我的服务器是Nginx+Apache
所以我试了三种,第一种只开启apache伪静态,第二种只开启nginx伪静态,第三种二者都开启,均以错误404告终!
Apache:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Nginx:
location / {
if (!-e $request_filename)
{
rewrite (.*) /index.php;
}
}
后台开启伪静态后 无论选择默认还是简短链接形式 前台都出错:
Not Found
The requested URL /topic/ was not found on this server.
阅读全文
收起全文