我试图将旧的谷歌缓存链接重定向到我们的新网站。所以它可以在我的regexp编辑器中工作,但不能在我的htacess文件中工作?
第一条规则似乎有效,但第二条不行。我在规则之外留下了一些例子。

# Legacy site redirects
# For homes home and search:
# www.site.ie/results_lost_found.html?search_type=lost_found&ad_type=&location_id=&x=31&y=12
RewriteRule ^results_lost_found|results_home(.+)search_type=lost_found(.*)$ lost_found [NC,R=301,L]
# www.site.ie/results_home.html?search_type=for_home&pet_type_id=&location_id=&x=14&y=10
RewriteRule ^results_lost_found|results_home(.*)search_type=for_home(.*)$ for_homes [NC,R=301,L]

最佳答案

因为rewriterule只匹配没有查询字符串的uri,所以您的规则都不起作用。在mod_rewrite中,您将执行以下操作:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} ^search_type=lost_found&ad_type=&location_id=&x=31&y=12$ [NC]
RewriteRule ^(results_lost_found|results_home)\.html$ /lost_found? [NC,R=301,L]

注意使用查询字符串变量%{QUERY_STRING}来匹配查询字符串。

关于regex - 正则表达式+ mod_rewrite正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15862675/

10-11 22:13