相关插件:
【三瑞】团购168 商业版本 V1.004免费下载
【三瑞】品牌123 商业版 2.007最新版
价值230元的【三瑞】电话114 商业版 1.132支持X3.2
【三瑞】品牌123 商业版 2.007最新版
discuz插件【三瑞】123优惠券模块 1.005
价值666元的【三瑞】微商家we 商业版 V1.009 beta(全网独家)
discuz插件【三瑞】123优惠券模块 1.005
相关教程:
【三瑞】123地图搜店伪静态规则
【三瑞】品牌123 商业版 静态规则
【三瑞】品牌123 - 地图搜店模块伪静态规则
【三瑞】团购168通用伪静态规则
【三瑞】品牌123—商讯模块伪静态规则
httpd.ini
- RewriteRule ^(.*)/brand\.html(\?(.*))*$ $1/plugin\.php\?id=sanree_brand&$3
- RewriteRule ^(.*)/brand-index-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/plugin\.php\?id=sanree_brand&mod=list&tid=$2&did=$3&filter=$4&listmode=$5&$6
- RewriteRule ^(.*)/brand-(.+)-([0-9]+)\.html(\?(.*))*$ $1/plugin\.php\?id=sanree_brand&mod=$2&tid=$3&$5
- RewriteRule ^(.*)/b/([a-z0-9]+)\.html(\?(.*))*$ $1/plugin\.php\?id=sanree_brand&mod=brandno&tid=$2&$4
复制代码 .htAccess
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^brand\.html$ plugin.php?id=sanree_brand&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^brand-index-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ plugin.php?id=sanree_brand&mod=list&tid=$1&did=$2&filter=$3&listmode=$4&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^brand-(.+)-([0-9]+)\.html$ plugin.php?id=sanree_brand&mod=$1&tid=$2&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^b/([a-z0-9]+)\.html$ $1/plugin.php?id=sanree_brand&mod=brandno&tid=$1&%1
复制代码 httpd.conf
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteRule ^(.*)/brand\.html\?*(.*)$ $1/plugin.php?id=sanree_brand&$2
- RewriteRule ^(.*)/brand-index-(.+)-(.+)-(.+)-(.+)\.html\?*(.*)$ $1/plugin.php?id=sanree_brand&mod=list&tid=$2&did=$3&filter=$4&listmode=$5&$6
- RewriteRule ^(.*)/brand-(.+)-(.+)\.html\?*(.*)$ $1/plugin.php?id=sanree_brand&mod=$2&tid=$3&$5
- RewriteRule ^(.*)/b/(.+)\.html\?*(.*)$ $1/plugin.php?id=sanree_brand&mod=brandno&tid=$2&$4
- </IfModule>
复制代码 Web.Config
- <rule name="sanree_brand_home">
- <match url="^(.*/)*brand.html\?*(.*)[ Discuz_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=sanree_brand&{R:2}" />
- </rule>
- <rule name="sanree_brand_cate">
- <match url="^(.*/)*brand-index-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=sanree_brand&mod=list&tid={R:2}&did={R:3}&filter={R:4}&listmode={R:5}&{R:6}" />
- </rule>
- <rule name="sanree_brand_item">
- <match url="^(.*/)*brand-(.+)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=sanree_brand&mod={R:2}&tid={R:3}&{R:4}" />
- </rule>
- <rule name="sanree_brand_short">
- <match url="^(.*/)*b/([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/plugin.php\?id=sanree_brand&mod=brandno&tid={R:2}&{R:3}" />
- </rule>
复制代码 Nginx伪静态规则:
- rewrite ^([^\.]*)/brand\.html$ $1/plugin.php?id=sanree_brand last;
- rewrite ^([^\.]*)/brand-index-(.+)-(.+)-(.+)-(.+)\.html$ $1/plugin.php?id=sanree_brand&mod=list&tid=$2&did=$3&filter=$4&listmode=$5 last;
- rewrite ^([^\.]*)/brand-(.+)-(.+)\.html$ $1/plugin.php?id=sanree_brand&mod=$2&tid=$3 last;
- rewrite ^([^\.]*)/b/(.+)\.html$ $1/plugin.php?id=sanree_brand&mod=brandno&tid=$2 last;
复制代码 |