我司虚拟主机服务器为windows服务器,对静态化的配置表现为在根目录下放置httpd.ini(URL Rewrite配置文件).
备注: .htaccess方式为Unix/Linux服务器所使用的URL Rewrite配置方式.
注:伪静态注释有中文的,保存编码格式要:ANSI
1.Discuz.
1).上传httpd.ini文件到虚拟主机根目录.
httpd.ini文件内容:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php\?$2
RewriteRule ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php\?fid=$2&page=$3
RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php\?tid=$2&extra=page\%3D$4&page=$3
RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php\?$2=$3
RewriteRule ^(.*)/tag-(.+)\.html$ $1/tag.php\?name=$2
RewriteRule ^(.*)/index-(.+)\.html$ $1/index.php\?gid=$2
#RewriteRule ^(.*)/index\.html$ $1/index.php
RewriteRule ^(这里填写您的BBS的安装目录,不要带“/”)/index\.html$ $1/index.php
2).在网站后台打开静态选项:

2.Shopex.
1). 复制以下内容到httpd.ini文件.
httpd.ini文件内容:
[ISAPI_Rewrite]
#首页
RewriteRule ^(.*)/index.html $1/index.php
RewriteRule ^(.*)/default.html $1/index.php
#商店公告
RewriteRule ^(.*)/bulletin.html $1/index.php\?gOo=article_list.dwt&acat=1
RewriteRule ^(.*)/bulletin_([0-9]+).html $1/index.php\?gOo=article_list.dwt&acat=1&p=$2
#商品分类
RewriteRule ^(.*)/catalog.html $1/index.php\?gOo=goods_category.dwt
#全部商品
RewriteRule ^(.*)/list.html $1/index.php\?gOo=goods_search_list.dwt
RewriteRule ^(.*)/list_([0-9]+).html $1/index.php\?gOo=goods_search_list.dwt&p=$2
#会员中心
RewriteRule ^(.*)/member.html $1/index.php\?gOo=member_home.dwt
#帮助中心与常见问题
RewriteRule ^(.*)/faq.html $1/index.php\?gOo=help.dwt&acat=2
RewriteRule ^(.*)/faq_([0-9]+).html $1/index.php\?gOo=help.dwt&acat=2&p=$2
#安全交易
RewriteRule ^(.*)/safe.html $1/index.php\?gOo=help_safe.dwt
#购买流程
RewriteRule ^(.*)/howtobuy.html $1/index.php\?gOo=help_buystep.dwt
#如何付款
RewriteRule ^(.*)/howtopay.html $1/index.php\?gOo=help_send.dwt
#联系我们
RewriteRule ^(.*)/contactus.html $1/index.php\?gOo=help_contact.dwt
#关于我们
RewriteRule ^(.*)/aboutus.html $1/index.php\?gOo=help_copyright.dwt
#顾客留言分页
RewriteRule ^(.*)/feedback.html $1/index.php\?gOo=shopbbs.dwt
RewriteRule ^(.*)/feedback_([0-9]+).html $1/index.php\?gOo=shopbbs.dwt&p=$2
#友情链接
RewriteRule ^(.*)/friendlink.html $1/index.php\?gOo=linkmore.dwt
#用户注册
RewriteRule ^(.*)/register.html $1/index.php\?gOo=register_1.dwt
#忘记密码
RewriteRule ^(.*)/lostpass.html $1/index.php\?gOo=forget.dwt
#商品详细页
RewriteRule ^(.*)/product/([0-9]+).html $1/index.php\?gOo=goods_details.dwt&goodsid=$2
RewriteRule ^(.*)/product_([0-9]+).html $1/index.php\?gOo=goods_details.dwt&goodsid=$2
RewriteRule ^(.*)/([0-9]+)_([^.]*).html $1/index.php\?gOo=goods_details.dwt&goodsid=$2
#新闻详细页
RewriteRule ^(.*)/article_([0-9]+).html $1/index.php\?gOo=help_details.dwt&articleid=$2
RewriteRule ^(.*)/message_([0-9]+).html $1/index.php\?gOo=article_details.dwt&articleid=$2
#分类详细列表
RewriteRule ^(.*)/catalog_([0-9]+).html $1/index.php\?gOo=goods_search_list.dwt&gcat=$2
RewriteRule ^(.*)/catalog_([0-9]+)_([0-9]+).html $1/index.php\?gOo=goods_search_list.dwt&gcat=$2&p=$3
#收藏商品
RewriteRule ^(.*)/addtofavorites_([0-9]+).html $1/index.php\?gOo=addmembergoods.do&goodsid=$2
#首页上的最新,推荐,特价商品
RewriteRule ^(.*)/list_([a-zA-Z]+).html $1/index.php\?gOo=goods_search_list.dwt>ype=$2
RewriteRule ^(.*)/list_([a-zA-Z]+)_([0-9]+).html $1/index.php\?gOo=goods_search_list.dwt>ype=$2&p=$3
2).进入网站后台开启静态功能.

1.ECShop(V2.7.0).
1). 复制以下内容到httpd.ini文件.
httpd.ini文件内容:
[ISAPI_Rewrite]
# 为了确保重写规则不影响服务器上的其他站点
# 请将下面的语句前的#号去掉,并将(?:www\.)?site1\.com改为商店所在域名
#RewriteCond %{HTTP:Host} (?:www\.)?site1\.com
RewriteRule ^(.*)/index.html$ $1/index\.php [I]
RewriteRule ^(.*)/category$ $1/index\.php [I]
RewriteRule ^(.*)/feed-c([0-9]+).xml$ $1/feed\.php\?cat=$2 [I]
RewriteRule ^(.*)/feed-b([0-9]+).xml$ $1/feed\.php\?brand=$2 [I]
RewriteRule ^(.*)/feed-type([^-]+)\.xml$ $1/feed\.php\?type=$2 [I]
RewriteRule ^(.*)/feed.xml$ $1/feed\.php [I]
RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/category\.php\?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6&page=$7&sort=$8&order=$9 [I]
RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)\.html$ $1/category\.php\?id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6 [I]
RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html(\?(.*))? $1/category\.php\?id=$2&brand=$3&page=$4&sort=$5&order=$6&$8 [I]
RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*)\.html(\?(.*))? $1/category\.php\?id=$2&brand=$3&page=$4&$7 [I]
RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)(.*)\.html(\?(.*))? $1/category\.php\?id=$2&brand=$3&$6 [I]
RewriteRule ^(.*)/category-([0-9]+)(.*)\.html(\?(.*))? $1/category\.php\?id=$2&$4 [I]
RewriteRule ^(.*)/category-([0-9]+)-b([0-9]+)\.html$ $1/category\.php\?$4&id=$2&brand=$3
RewriteRule ^(.*)/goods-([0-9]+)(.*)\.html$ $1/goods\.php\?id=$2 [I]
RewriteRule ^(.*)/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/article_cat\.php\?id=$2&page=$3&sort=$4&order=$5 [I]
RewriteRule ^(.*)/article_cat-([0-9]+)-([0-9]+)(.*)\.html$ $1/article_cat\.php\?id=$2&page=$3 [I]
RewriteRule ^(.*)/article_cat-([0-9]+)(.*)\.html$ $1/article_cat\.php\?id=$2 [I]
RewriteRule ^(.*)/article-([0-9]+)(.*)\.html$ $1/article\.php\?id=$2 [I]
RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html $1/brand\.php\?id=$2&cat=$3&page=$4&sort=$5&order=$6 [I]
RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*)\.html $1/brand\.php\?id=$2&cat=$3&page=$4 [I]
RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)\.html(.*)$ $1/brand\.php\?$4&id=$2&cat=$3 [I]
RewriteRule ^(.*)/brand-([0-9]+)-c([0-9]+)(.*)\.html $1/brand\.php\?id=$2&cat=$3 [I]
RewriteRule ^(.*)/brand-([0-9]+)(.*)\.html $1/brand\.php\?id=$2 [I]
RewriteRule ^(.*)/tag-(.*)\.html $1/search\.php\?keywords=$2 [I]
RewriteRule ^(.*)/snatch-([0-9]+)\.html$ $1/snatch\.php\?id=$2 [I]
RewriteRule ^(.*)/group_buy-([0-9]+)\.html$ $1/group_buy\.php\?act=view&id=$2 [I]
RewriteRule ^(.*)/auction-([0-9]+)\.html$ $1/auction\.php\?act=view&id=$2 [I]
RewriteRule ^(.*)/exchange-id([0-9]+)(.*)\.html$ $1/exchange\.php\?id=$2&act=view [I]
RewriteRule ^(.*)/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/exchange\.php\?cat_id=$2&integral_min=$3&integral_max=$4&page=$5&sort=$6&order=$7 [I]
RewriteRule ^(.*)/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$ $1/exchange\.php\?cat_id=$2&page=$3&sort=$4&order=$5 [I]
RewriteRule ^(.*)/exchange-([0-9]+)-([0-9]+)(.*)\.html$ $1/exchange\.php\?cat_id=$2&page=$3 [I]
RewriteRule ^(.*)/exchange-([0-9]+)(.*)\.html$ $1/exchange\.php\?cat_id=$2 [I]
2).进入网站后台开启静态功能.
