在Yii1项目的子目录中建立网站,该网站会导致url冲突,Yii1认为/ test是控制器。
例如:
http://www.example.com/(主网站) http://www.example.com/test/(子网站)
我尝试了htaccess规则,但没有用。
RewriteRule ^ $ / test [L,R = 301]
我希望输出结果显示子目录中的网站
答案 0 :(得分:0)
发现问题,它是/ test /项目中的htaccess:
enter code he<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /test/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test/index.php [L]
re