1。先在bo-blog后台开启搜索引擎优化
2。在网站目录下建立.htaccess文件,写入如下内容:
Options -Indexes
RewriteEngine on
rewritebase /
RewriteRule ^read.php/([0-9]*).htm$ /read.php`$1
1。先在bo-blog后台开启搜索引擎优化
2。在网站目录下建立.htaccess文件,写入如下内容:
Options -Indexes
RewriteEngine on
rewritebase /
RewriteRule ^read.php/([0-9]*).htm$ /read.php`$1
RewriteEngine onRewriteBase /
RewriteRule ^archiver/([a-z0-9\-]+\.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$4&page=$2
RewriteRule ^profile-(username|uid)-(.*)\.html$ viewpro.php?$1=$2
其中 “RewriteBase /”是论坛路径,如果你的论坛在/bbs那么只要更改为”RewriteBase /bbs”即可。