如何为这种情况编写htaccess重写规则? (带参数)

时间:2018-01-25 19:56:34

标签: wordpress .htaccess redirect mod-rewrite url-redirection

请帮助使用正则表达式htaccess规则,以便可以重定向以下网址:

http://hack-games-cheats-mobile1.info/haw/oh/index.html?name=Empire+Four+Kingdoms+Hack&img=https://mobile-cheats24.com/wp-content/uploads/2017/02/post-1-817x320.jpg

http://hack-games-cheats-mobile1.info/oh/index.html?name=Empire+Four+Kingdoms+Hack&img=https://mobile-cheats24.com/wp-content/uploads/2017/02/post-1-817x320.jpg

我需要能够重定向url的正则表达式解决方案,无论它是否包含/ haw /或/ de /,所以它是/.*/我想

由于

1 个答案:

答案 0 :(得分:0)

RewriteCond %{QUERY_STRING} name=[^&]+&img=[^&]+
RewriteRule ^/?(haw|de)/oh/index.html$ /oh/index.html [R,L]

当网址包含查询参数nameimg以及请求网址前缀为/haw/oh/index.html/de/oh/index.html时,它会重定向。目标网址为/oh/index.html