我每天都会从我写的一个已经不复存在的教程中点击几下。我没有让他们坐在404上,而是创建了一个页面,其中包含指向更新的链接,希望其他人可以提供帮助。
我正在尝试编辑我的htaccess以重定向
我的网站是WP供电的,传入的链接是
/tutorials/?p=3
我希望它能够:
/wiki/sorry-this-tutorial-no-longer-exists
我试过了:
Redirect /tutorials/?p=3 http://domain.com/wiki/sorry-this-tutorial-no-longer-exists
我最接近的是
RedirectMatch 301 ^/tutorials/?(.*) http://domain.com/wiki/sorry-this-tutorial-no-longer-exists
但是那当然坚持......存在/?p = 3到底是不行的
血腥问号的任何帮助? (我试过htaccess url rewrite with question mark但它不起作用?)
答案 0 :(得分:1)
我相信这应该做你想要的事情
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/tutorials/$
RewriteCond %{QUERY_STRING} ^p=3
RewriteRule ^(.*)$ http://domain.com/wiki/sorry-this-tutorial-no-longer-exists? [R=302,L]