0

从我写的一个现已失效的教程中,我每天都会有几首热门歌曲。我没有让他们坐在 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 

但这当然会把 ...exists/?p=3 放在最后,这是行不通的

对血腥问号有帮助吗?(我尝试用问号重写 htaccess url,但它不起作用?)

4

1 回答 1

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]
于 2012-05-03T10:30:55.877 回答