- 积分
- 19754
- 经验
- 1998 点
- 热情
- 1987 点
- 魅力
- 145 点
- 信誉
- 1406 度
- 金币
- 2571 枚
- 钻石
- 41 颗
- 蓝光币
- 10 ¥
Forum CEO
- 金币
- 2571 枚
- 体力
- 12349 点
|
# 将 RewriteEngine 模式打开
RewriteEngine On
# 修改以下语句中的 /discuz 为你的论坛目录地址,如果程序放在根目录中,请将 /discuz 修改为 /
RewriteBase /
# Rewrite 系统规则请勿修改
本附件中只包含为静态
其他的防盗链等自己看看研究吧 很简单的
404错误页如果服务器控制面板没有在这里也可以
可以绑子目录 测试都OK 但是不是那么太好用!但好的是都可以实现!
- 将 RewriteEngine 模式打开
- RewriteEngine On
- 伪静态规则DZX
- RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1
- RewriteRule ^article-([0-9]+)\.html$ portal.php?mod=article&articleid=$1
- RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2
- RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2
- RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2
- RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2
- RewriteRule ^([a-z]+)-(.+)\.html$ $1.php?rewrite=$2
- 指定404、500错误页
- RewriteEngine On
- #RewriteBase /
- ErrorDocument 404 /404.html
- ErrorDocument 500 /500.html
- 防盗链:
- RewriteCond %{HTTP_REFERER} !https://vonephoto.com/.*$ [NC]
- RewriteCond %{HTTP_REFERER} !https://vonephoto.com$ [NC]
- RewriteCond %{HTTP_REFERER} !https://vonephoto.net/.*$ [NC]
- RewriteCond %{HTTP_REFERER} !https://vonephoto.net$ [NC]
- RewriteCond %{HTTP_REFERER} !https://www.vonephoto.com/.*$ [NC]
- RewriteCond %{HTTP_REFERER} !https://www.vonephoto.com$ [NC]
- RewriteCond %{HTTP_REFERER} !https://www.vonephoto.net/.*$ [NC]
- RewriteCond %{HTTP_REFERER} !https://www.vonephoto.net$ [NC]
- RewriteRule .(mp3|wma|jpg|gif|png|bmp|swf|jpeg) /images/daolian.gif [R,NC,L]
- 二级域名绑定到子目录:
- RewriteCond %{HTTP_HOST} ^www.vonephoto.com$
- RewriteCond %{REQUEST_URI} !^/index/
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ /index/$1
- RewriteCond %{HTTP_HOST} ^www.vonephoto.com$
- RewriteRule ^(/)?$ index/index.htm [L]
复制代码
|
|