centos Apache环境,同服务器下dz论坛伪静态成功,wecenter死活不行。
用下面这个,首页400,其他个页面也是打不开。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
用下面这个,各链接可以打开,但图片、css这些失效,登陆,操作无法成功。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /index.php [QSA,PT,L]
</IfModule>
什么情况啊,这么难的。
阅读全文
收起全文