骑着一头驴 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 seatunnel-web使用SQL组件时候后台报错,无法找到表格
    • ¥15 fpga自动售货机数码管(相关搜索:数字时钟)
    • ¥15 用前端向数据库插入数据,通过debug发现数据能走到后端,但是放行之后就会提示错误
    • ¥30 3天&7天&&15天&销量如何统计同一行
    • ¥30 帮我写一段可以读取LD2450数据并计算距离的Arduino代码
    • ¥15 飞机曲面部件如机翼,壁板等具体的孔位模型
    • ¥15 vs2019中数据导出问题
    • ¥20 云服务Linux系统TCP-MSS值修改?
    • ¥20 关于#单片机#的问题:项目:使用模拟iic与ov2640通讯环境:F407问题:读取的ID号总是0xff,自己调了调发现在读从机数据时,SDA线上并未有信号变化(语言-c语言)
    • ¥20 怎么在stm32门禁成品上增加查询记录功能