Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,我需要只重定向根站点(主页)而不是流量到其他页面。
例子:
主域:(www.misite.com重定向到 another.com)
www.misite.com
来自 http 的请求:(www.misite.com/?other-page不重定向)
www.misite.com/?other-page
来自 http 的请求:(www.misite.com/?another-page不重定向)
www.misite.com/?another-page
我只是将所有流量从www.misite.com/misite.com到其他地方,而不是其他页面、内部等。
misite.com
谢谢!
在 misite.com 站点的 htaccess 或 vhost 配置中使用 mod_alias。
RedirectMatch 301 ^/$ http://another.com/?