如何重定向到Yii1项目子目录中的网站?

时间:2019-04-14 11:21:42

标签: yii1.x

在Yii1项目的子目录中建立网站,该网站会导致url冲突,Yii1认为/ test是控制器。

例如:

http://www.example.com/(主网站) http://www.example.com/test/(子网站)

我尝试了htaccess规则,但没有用。

RewriteRule ^ $ / test [L,R = 301]

我希望输出结果显示子目录中的网站

http://www.example.com/test/(子网站)

1 个答案:

答案 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