伪静态用的是面板默认给的thinkphp版本:- <IfModule mod_rewrite.c>
- RewriteEngine on
- RewriteBase /
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
- </IfModule>
复制代码
php是5.4,apache是2.4。
已开启pathinfo,并且配置文件中禁掉了404跳转 #errorDocument 404 /404.html 。全部修改完毕也重启了apache和php服务。
但是目前网站遇见的情况是,有时刷新正常,有时刷新会404,概率五五开。
我在其他未用面板的服务器上一切正常,转移过来就发生了这情况,请问哪里出问题了吗?谢谢!
|
|