标签: .htaccess url-rewriting url-shortener
我需要使用我的htaccess文件缩短这样的网址。
http://example.org/product/category/my-product/
到
http://example.org/my-product
我该怎么做呢。
答案 0 :(得分:1)
您可以在DOCUMENT_ROOT/.htaccess文件中使用此代码:
DOCUMENT_ROOT/.htaccess
RewriteEngine On RewriteRule ^((?!product/category/).+)$ /product/category/$1 [L,NC]