.htaccess mod-rewrite urls以" -XXXX"结尾(短划线,数字)

时间:2017-10-09 14:42:08

标签: .htaccess mod-rewrite url-rewriting friendly-url

我正在尝试匹配以短划线和一组数字(或只是一个数字)结尾但不起作用的网址:

示例:domain.com/my-product-36-inches-long-135355

# rewrite urls
Options +SymLinksIfOwnerMatch +FollowSymLinks -Indexes
RewriteEngine On
RewriteBase /


# product 
RewriteRule ^shop/-([0-9,]+)/?$ product.php?url_key=$1 [NC,L]

# category
RewriteRule ^shop/([^/.]+)$ category.php?url_key=$1 [NC,L]

# sub category
RewriteRule ^shop/([^/.]+)/([^/.]+)$ subcategory.php?url_key=$1&url_key2=$2 [NC,L]

# list (from subcategory page; will have 3 variables)
RewriteRule ^shop/([^/.]+)/([^/.]+)/([^/.]+)$ list.php?mr=3&url_key1=$1&url_key2=$2&url_key3=$3 [NC,L]

# list (from category page; will have 4 variables)
RewriteRule ^shop/([^/.]+)/([^/.]+)/([^/.]+)/([^/.]+)$ list.php?mr=4&url_key1=$1&url_key2=$2&url_key3=$3&url_key4=$4 [NC,L]



# business types
RewriteRule ^shop/restaurant-supply-business-type section.php?id=1 [NC,L]

# login
RewriteRule ^shop/customer/account/login login.php [NC,L]

# brands
RewriteRule ^shop/shopby/brand brands.php [NC,L]

# professional services
RewriteRule ^shop/professional-services professional_services.php [NC,L]

# pages 
RewriteRule ^locations/([^/.]+)$  page.php?url_key=locations/$1 [NC,L]
RewriteRule ^locations page.php?url_key=locations [NC,L]
RewriteRule ^testimonials page.php?url_key=testimonials [NC,L]
RewriteRule ^contact-us page.php?url_key=contact-us [NC,L]
RewriteRule ^equipment-checklist page.php?url_key=equipment-checklist [NC,L]
RewriteRule ^shipping page.php?url_key=shipping [NC,L]
RewriteRule ^returns page.php?url_key=returns [NC,L]
RewriteRule ^lease-financing page.php?url_key=lease-financing [NC,L]
RewriteRule ^news page.php?url_key=news [NC,L]
RewriteRule ^advice page.php?url_key=advice [NC,L]
RewriteRule ^about-us page.php?url_key=about-us [NC,L]
RewriteRule ^careers page.php?url_key=careers [NC,L]
RewriteRule ^privacy page.php?url_key=privacy [NC,L]
RewriteRule ^terms-of-use page.php?url_key=terms-of-use [NC,L]
RewriteRule ^page/([^/.]+)$ page.php?url_key=$1 [NC,L]
RewriteRule ^section/([^/.]+)$ section.php?url_key=$1 [NC,L]


# Remove all .php extensions without interfering with .js or .css.
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !pagespeed
RewriteRule ^([^.]+?)/?$ $1.php [L]

# Remove index from url.
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteCond %{REQUEST_FILENAME} !-d

# RewriteRule ^([^.]+?)/?$ index.php?$1 [L,QSA]

2 个答案:

答案 0 :(得分:0)

您可以使用此规则仅匹配结尾部分:

RewriteRule ^shop/.*-([0-9,]+)/?$ product.php?url_key=$1 [NC,QSA,L]

答案 1 :(得分:0)

如果要匹配包含(-numbers或数字)的uri的结尾,请仅使用以下内容:

RewriteRule ^shop/(.*)(-([0-9]+)|([0-9]+))$  product.php?url_key=$2 [R,L,NE]

如果( - 数字或只有一位数字)使用以下内容:

RewriteRule ^shop/(.*)(-([0-9]+)|\b[0-9]\b)$ product.php?url_key=$2 [R,L,NE]