骑着一头驴 2019-06-11 16:12
浏览 280

ecshop修改url重写规则 伪静态规则修改

1伪静态规则生成的URL太长了,想去掉中间部分,比如:http://www.cleaning8.com/wenzhang-cat12/article-34.html 修改为http://www.cleaning8.com/article-34.html
同样将商品的URL的/shangpin-beijing/goods-3.html修改为/goods-3.html

2.代码如下:

order deny,allow
deny from all

RewriteEngine On
#RewriteBase /

direct one-word access

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^index.html$ index.php [L]
RewriteRule ^stores.html$ stores.php [L]
RewriteRule ^brand.html$ brand.php [L]
RewriteRule ^exchange.html$ exchange.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]+)-fil([0-2])-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$ url301.php\?pagetype=category&id=$1&brand=$2&price_min=$3&price_max=$4&filter=$5&filter_attr=$6&page=$7&sort=$8&order=$9 [QSA,L]
RewriteRule ^category-([0-9]+)-b([0-9_]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$ url301.php\?pagetype=category&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$ url301.php\?pagetype=category&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$ url301.php\?pagetype=category&id=$1&brand=$2&page=$3&sort=$4&order=$5 [QSA,L]
RewriteRule ^category-([0-9]+)-b([0-9_]+)-([0-9]+)(.*).html$ url301.php\?pagetype=category&id=$1&brand=$2&page=$3 [QSA,L]
RewriteRule ^category-([0-9]+)-b([0-9_]+)(.*).html$ url301.php\?pagetype=category&id=$1&brand=$2 [QSA,L]
RewriteRule ^category-([0-9]+)(.*).html$ url301.php\?pagetype=category&id=$1 [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/compare.php$ compare.php [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/category.php$ category.php [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^/category-([0-9]+)-b([0-9_]+)-min([0-9]+)-max([0-9]+)-fil([0-2])-attr([^-]*)-([0-9]+)-(.*).html$ ?path_name=$1&id=$2&brand=$3&price_min=$4&price_max=$5&filter=$6&filter_attr=$7&page=$8 [C,NC]
#RewriteRule ^(.*)-(.+)-([a-zA-Z]+)(.*)$ category.php\?sort=$2&order=$3 [QSA,L,NC]

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

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/category-([0-9]+)-b([0-9_]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$ category.php\?path_name=$1&id=$2&brand=$3&price_min=$4&price_max=$5&filter_attr=$6&page=$7&sort=$8&order=$9 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/category-([0-9]+)-b([0-9_]+)-min([0-9]+)-max([0-9]+)-fil([0-2])-attr([^-]*)(.*).html$ category.php\?path_name=$1&id=$2&brand=$3&price_min=$4&price_max=$5&filter=$6&filter_attr=$7 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/category-([0-9]+)-b([0-9_]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$ category.php\?path_name=$1&id=$2&brand=$3&page=$4&sort=$5&order=$6 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/category-([0-9]+)-b([0-9_]+)-([0-9]+)(.*).html$ category.php\?path_name=$1&id=$2&brand=$3&page=$4 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/category-([0-9]+)-b([0-9_]+)(.*).html$ category.php\?path_name=$1&id=$2&brand=$3 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/category-([0-9]+)(.*).html$ category.php\?path_name=$1&id=$2 [QSA,L]

#RewriteRule ^goods-([0-9]+)(.*).html$ goods.php\?id=$1 [QSA,L]
RewriteRule ^goods-([0-9]+)(.*).html$ url301.php\?pagetype=goods&id=$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/goods-([0-9]+)(.*).html(.*)$ goods.php\?path_name=$1&id=$2 [QSA,L]

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

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$ article_cat.php\?path_name=$1&id=$2&page=$3&sort=$4&order=$5 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/article_cat-([0-9]+)-([0-9]+)-(.+)(.*).html$ article_cat.php\?path_name=$1&id=$2&page=$3&keywords=$4 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/article_cat-([0-9]+)-([0-9]+)(.*).html$ article_cat.php\?path_name=$1&id=$2&page=$3 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/article_cat-([0-9]+)(.*).html$ article_cat.php\?path_name=$1&id=$2 [QSA,L]

RewriteRule ^article-([0-9]+)(.*).html$ url301.php\?pagetype=article&id=$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/article-([0-9]+)(.*).html$ article.php\?path_name=$1&id=$2 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^zhuanti/topic-([0-9]+).html$ topic.php\?topic_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 ^stores-([0-9]+).html$ stores.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]

###
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
##预售活动-商品向列表页如果是预售商品则跳转到预售商品详情页:用户访问的URL --->>重写后的URL
RewriteRule ^pre_sale-([0-9]+).html$ pre_sale.php?id=$1 [QSA,L]

  • 写回答

0条回答

    报告相同问题?

    悬赏问题

    • ¥15 vue3加ant-design-vue无法渲染出页面
    • ¥15 matlab(相关搜索:紧聚焦)
    • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
    • ¥15 路易威登官网 里边的参数逆向
    • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
    • ¥50 需求一个up主付费课程
    • ¥20 模型在y分布之外的数据上预测能力不好如何解决
    • ¥15 processing提取音乐节奏
    • ¥15 gg加速器加速游戏时,提示不是x86架构
    • ¥15 python按要求编写程序