这是一个创建于 3895 天前的主题,其中的信息可能已经有所发展或是发生改变。
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule ^(.*)/topic-(.+)\.html(\?(.*))*$ $1/portal\.php\?mod=topic&topic=$2&$4
RewriteRule ^(.*)/article-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/portal\.php\?mod=view&aid=$2&page=$3&$5
RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=forumdisplay&fid=$2&page=$3&$5
RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$6
RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=group&fid=$2&page=$3&$5
RewriteRule ^(.*)/space-(username|uid)-(.+)\.html(\?(.*))*$ $1/home\.php\?mod=space&$2=$3&$5
RewriteRule ^(.*)/blog-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/home\.php\?mod=space&uid=$2&do=blog&id=$3&$5
RewriteRule ^(.*)/(fid|tid)-([0-9]+)\.html(\?(.*))*$ $1/index\.php\?action=$2&value=$3&$5
RewriteRule ^(.*)/merchant\.html$ $1/plugin\.php\?id=merchant\:memcp&mobile=no
RewriteRule ^(.*)/merchant-([0-9]+)\.html$ $1/plugin\.php\?id=merchant\:memcp&mid\=$2&mobile=no
RewriteRule ^(.*)/mlist-([0-9]+)\.html$ $1/plugin\.php\?id=merchant\:memcp&catid=$2&mobile=no
RewriteRule ^(.*)/mlist-([0-9]+)-([0-9]+)\.html$ $1/plugin\.php\?id=merchant\:memcp&catid=$2&sort=$3&mobile=no
RewriteRule ^(.*)/merchant_([0-9]+)_([0-9]+)_([0-9]+)_([0-9])_([0-9])_([0-9])\.html$ $1/plugin\.php\?id=merchant\:memcp&catid=$2&sort=$3®=$4&r=$5&t=$6&s=$7&mobile=no
RewriteRule ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html(\?(.*))*$ $1/plugin\.php\?id=$2:$3&$5
1 条回复 • 1970-01-01 08:00:00 +08:00
|
|
1
Actrace 2014-03-26 17:02:53 +08:00
好蛋疼,我一般都用以下规则... RewriteEngine On RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]
|