更改目录后所有页面上的404错误

时间:2014-10-23 12:45:46

标签: php

我已将网站的文件夹位置从www.example.com更改为www.example.com/users/,但现在所有链接在点击时都显示404错误。

我的htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

应用程序文件夹htaccess

 RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L] 

1 个答案:

答案 0 :(得分:0)

RewriteBase应为/ users /

RewriteRule ./users/index.php