
- 帖子
- 69
- 积分
- 208
- 金钱
- 69
- 在线时间
- 14 小时
- 注册时间
- 2011-2-21
- 最后登录
- 2013-4-15
|
本帖最后由 jlahui 于 2011-3-9 21:57 编辑
000空间不可以用伪静态的,切记啊,不然删你没商量。以下是我试过的,在000空间一定能行,好用,可是在试过的第二天,网站没有了可能造成什么数据缓慢了,谁要不信可以试试,之后告诉站还有没了,呵呵
.htaccess文件里的内容如下。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
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
RewriteRule ^space-(username|uid)-(.+)\.html$ space.php?$1=$2
RewriteRule ^tag-(.+)\.html$ tag.php?name=$1
</IfModule> |
|