我只需要在 Apache 2.4 中将http://example.org/重定向到http://www.something-other.org/ 。
只是主页。没有其他的。即http://example.org/?page=blog或http://example.org/contact.html不应重定向。
我所能找到的只是将页面完全重定向到另一个站点,例如:
Redirect "/" "http://www.something-other.org/"
这有点好:
RewriteEngine On
RewriteRule ^/$ http:// www.something-other.org/ [L,R=301]
它只重定向主页,但如果有查询字符串,它也会重定向。
您需要使用
mod_rewrite
:该
QSD
标志丢弃查询字符串。启用
mod_rewrite
并重新启动apache
: