我喜欢我替换id:
RewriteRule ^product/([0-9]+) http://example.com/index.php?Id=$1 [L]
如果不包含数字,我如何从请求中删除product/
?
例如,来自:
example.com/product/img/img.gif
要:
example.com/img/img.gif
答案 0 :(得分:0)
在product
文件夹中,创建包含以下内容的.htaccess
文件:
RewriteEngine on
RewriteRule (.*)$ /$1 [R=301,L]