1

我在使用以下重定向时遇到问题。

Redirect 302 /info/index.php?product=xxx http://xyz.com/xxx/

我不明白为什么它不起作用。我必须逃避一个角色吗?

4

1 回答 1

1

您不能使用Redirect指令来匹配查询字符串。改为使用mod_rewrite

将此代码放入您的DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

RewriteCond %{QUERY_STRING} ^product=([^&]+)
RewriteRule ^index\.php$ http://xyz.com/%1/? [L,NC,R=301]

参考:Apache mod_rewrite 简介

于 2013-11-08T14:55:15.483 回答