我想在“ mydomain.com ”上安装 codeigniter,托管(共享)呈现下一种结构:
- public_html/
- 404/
- _私人的/
- _vti_bin/
- cgi-bin/
- addondomain1.com/
- addondomain2.com/
- 代码点火器
- 应用/
- 系统/
- 索引.php
- .htaccess
index.php(修改):
<?php
...
$system_path = 'codeigniter/system';
$application_folder = 'codeigniter/application';
...
.htaccess(默认):
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
仅当 url 具有“ mydomain.com ”时,如何修改 .htaccess 以强制/应用重写条件?