建站知识

当前位置:首页 -> 建站知识

常用伪静态配置规则的范例参考

发布时间:2016/6/2 17:29:25 浏览次数:1146

一、常用伪静态配置规则-以shopex为例:

#$Id: root.htaccess 17348 2008-12-23 05:53:22Z flaboy $

AddEncoding gzip .jgz
AddType "text/javascript;charset=UTF-8" .jgz

AddEncoding gzip .zcss
AddType "text/css;charset=UTF-8" .zcss


RewriteEngine  on

# 设置RewriteBase的值为你的商店目录地址
RewriteBase /
RewriteRule ^themes/.*.(html|xml)$ / [F]
RewriteCond %{REQUEST_FILENAME} .(html|xml|json|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|cgi|shtml|shtm|phtm)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L]


SecFilterEngine Off
SecFilterScanPOST Off

 

二、常用伪静态配置规则-以discuz php版本为例

[ISAPI_Rewrite]

[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&$3
RewriteRule ^(.*)/article-([0-9]+).html?*(.*)$ $1/portal.php?mod=article&articleid=$2&$3
RewriteRule ^(.*)/forum-(w+)-([0-9]+).html?*(.*)$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3&$4
RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html?*(.*)$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3&$5
RewriteRule ^(.*)/group-([0-9]+)-([0-9]+).html?*(.*)$ $1/forum.php?mod=group&fid=$2&page=$3&$4
RewriteRule ^(.*)/space-(username|uid)-(.+).html?*(.*)$ $1/home.php?mod=space&$2=$3&$4
RewriteRule ^(.*)/([a-z]+)-(.+).html?*(.*)$ $1/$2.php?rewrite=$3&$4

 

三、常用伪静态配置规则-以ecshop为例

    order deny,allow
    deny from all


RewriteEngine On
#RewriteBase /

# direct one-word access
RewriteRule ^index.html$    index.php [L]
RewriteRule ^category$      index.php [L]

# access any object by its numeric identifier
RewriteRule ^feed-c([0-9]+).xml$       feed.php?cat=$1 [L]
RewriteRule ^feed-b([0-9]+).xml$       feed.php?brand=$1 [L]
RewriteRule ^feed-type([^-]+).xml$       feed.php?type=$1 [L]
RewriteRule ^feed.xml$                 feed.php [L]

RewriteRule ^category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$  category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8 [QSA,L]
RewriteRule ^category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)(.*).html$                            category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5 [QSA,L]
RewriteRule ^category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$                                      category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5 [QSA,L]
RewriteRule ^category-([0-9]+)-b([0-9]+)-([0-9]+)(.*).html$                                                       category.php?id=$1&brand=$2&page=$3  [QSA,L]
RewriteRule ^category-([0-9]+)-b([0-9]+)(.*).html$                                                                category.php?id=$1&brand=$2  [QSA,L]
RewriteRule ^category-([0-9]+)(.*).html$                                                                          category.php?id=$1  [QSA,L]

RewriteRule ^goods-([0-9]+)(.*).html$  goods.php?id=$1 [QSA,L]

RewriteRule ^article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$  article_cat.php?id=$1&page=$2&sort=$3&order=$4  [QSA,L]
RewriteRule ^article_cat-([0-9]+)-([0-9]+)-(.+)(.*).html$              article_cat.php?id=$1&page=$2&keywords=$3 [QSA,L]
RewriteRule ^article_cat-([0-9]+)-([0-9]+)(.*).html$                   article_cat.php?id=$1&page=$2   [QSA,L]
RewriteRule ^article_cat-([0-9]+)(.*).html$                            article_cat.php?id=$1   [QSA,L]

RewriteRule ^article-([0-9]+)(.*).html$                                article.php?id=$1   [QSA,L]

RewriteRule ^brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+).html   brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5 [QSA,L]
RewriteRule ^brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*).html                brand.php?id=$1&cat=$2&page=$3 [QSA,L]
RewriteRule ^brand-([0-9]+)-c([0-9]+)(.*).html                         brand.php?id=$1&cat=$2 [QSA,L]
RewriteRule ^brand-([0-9]+)(.*).html                                   brand.php?id=$1 [QSA,L]

RewriteRule ^tag-(.*).html                                             search.php?keywords=$1 [QSA,L]
RewriteRule ^snatch-([0-9]+).html$                                     snatch.php?id=$1 [QSA,L]
RewriteRule ^group_buy-([0-9]+).html$                                  group_buy.php?act=view&id=$1 [QSA,L]
RewriteRule ^auction-([0-9]+).html$                                    auction.php?act=view&id=$1 [QSA,L]

RewriteRule ^exchange-id([0-9]+)(.*).html$                             exchange.php?id=$1&act=view [QSA,L]
RewriteRule ^exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$ exchange.php?cat_id=$1&integral_min=$2&integral_max=$3&page=$4&sort=$5&order=$6 [QSA,L]
RewriteRule ^exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$                         exchange.php?cat_id=$1&page=$2&sort=$3&order=$4 [QSA,L]
RewriteRule ^exchange-([0-9]+)-([0-9]+)(.*).html$                                          exchange.php?cat_id=$1&page=$2  [QSA,L]
RewriteRule ^exchange-([0-9]+)(.*).html$                                                   exchange.php?cat_id=$1  [QSA,L]


文章标题:常用伪静态配置规则的范例参考
本文地址:http://www.ek306.com/news/11.html
本文来源:东莞市驿铭网络科技有限公司

上一篇:企业网站建设的七大基本步骤
下一篇:中小企业如何降低网络推广成本