phpwind 9.0 RC版[20121108],伪静态无效的问题
问题:
我的网站形式www.xxx.com/bbs/
论坛就放在bbs中。
开启伪静态之后能访问,但是访问内容都是www.xxx.com的页面。
这种问题怎么解决。。。
我空间是支持rewrite的。
解决方法:在伪静态规则中
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule !.(js|ico|gif|jpe?g|bmp|png|css)$ /index.php [NC,L]
最后面找到/index.php
在前面添加/bbs即可。
即:RewriteRule !.(js|ico|gif|jpe?g|bmp|png|css)$ /bbs/index.php [NC,L]