[提问]
求助,ix主机怎么实现discuz论坛的静态化啊
|
|
http://faq.comsenz.com/viewnews-790
我按照这里说的新建了一个htaccess文件填好内容上传到网站根目录,然后改名为.htaccess,但是仍然无法开启静态化,帖子全是404,怎么弄啊,谢谢 |
|
|
|
|
|
|
|
|
|
|
gypworks526
发表于 2009-12-21 10:16:02
|
显示全部楼层
RewriteEngine On
RewriteBase /
RewriteRule ^archiver/((fid|tid)-[\w\-]+\.html)$ archiver/index.php?$1
RewriteRule ^forum-([0-9]+)-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ viewthread.php?tid=$1&extra=page\%3D$3&page=$2
RewriteRule ^space-(username|uid)-(.+)\.html$ space.php?$1=$2
RewriteRule ^tag-(.+)\.html$ tag.php?name=$1
可以试试这个。
[ 本帖最后由 gypworks526 于 2009-12-21 10:17 AM 编辑 ] |
|
|
|
|
|
|
|
|