0

我喜欢我替换 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
4

1 回答 1

0

在您的product文件夹中,创建.htaccess包含以下内容的文件:

RewriteEngine on
RewriteRule (.*)$ /$1 [R=301,L]
于 2013-08-28T05:02:21.937 回答