|
CI放在子目录,首页能打开,其他页面都是404,
同样是放在tour子目录的所有页面是可以正常打开的,http://www.99lvxing.cn/tour/
求高人指点
系统:系统版本wdCP v3.3.11
CI版本:
define('CI_VERSION', '2.2.0');
安装目录:public_html/wx
http://www.99lvxing.cn/wx/
默认首页 :
tour/index.php,index.php,index.html
wx目录 .htaccess文件:
RewriteEngine on
RewriteBase /wx/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /wx/index.php/$1 [L]
|
|