相关插件:
【三瑞】团购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
- #sanree_brand_maps
- RewriteRule ^(.*)/maps\.html(\?(.*))*$ $1/plugin\.php\?id=sanree_brand_maps&$3
- RewriteRule ^(.*)/maps-index-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/plugin\.php\?id=sanree_brand_maps&mod=list&tid=$2&did=$3&filter=$4&listmode=$5&$6
复制代码 httpd.conf
- #sanree_brand_maps
- RewriteRule ^(.*)/maps\.html\?*(.*)$ $1/plugin.php?id=sanree_brand_maps&$2
- RewriteRule ^(.*)/maps-index-(.+)-(.+)-(.+)-(.+)\.html\?*(.*)$ $1/plugin.php?id=sanree_brand_maps&mod=list&tid=$2&did=$3&filter=$4&listmode=$5&$6
复制代码 .htAccess
- #sanree_brand_maps
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^maps\.html$ plugin.php?id=sanree_brand_maps&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^maps-index-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ plugin.php?id=sanree_brand_maps&mod=list&tid=$1&did=$2&filter=$3&listmode=$4&%1
复制代码 Nginx.txt
- #sanree_brand_maps
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^maps\.html$ plugin.php?id=sanree_brand_maps&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^maps-index-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ plugin.php?id=sanree_brand_maps&mod=list&tid=$1&did=$2&filter=$3&listmode=$4&%1
复制代码 Web.Config
- #sanree_brand_maps
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^maps\.html$ plugin.php?id=sanree_brand_maps&%1
- RewriteCond %{QUERY_STRING} ^(.*)$
- RewriteRule ^maps-index-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)\.html$ plugin.php?id=sanree_brand_maps&mod=list&tid=$1&did=$2&filter=$3&listmode=$4&%1
复制代码 |