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.century21.bh 的流量重定向到 Century21.bh/map
我试图使用 .htaccess 没有运气。我在 cPanels 重定向方面取得了一些小小的成功。
它重定向了所有主页流量,但例如它没有重定向。www.century21.bh/OldPage.html
这是我所拥有的:
//301 Redirect Entire Directory RedirectMatch 301 /(.*) /map/$1
尝试:
RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.century21\.bh$ [NC] RewriteRule ^ /map [L,R=301]
此规则需要位于www.century21.bh域文档根目录中的 htaccess 文件(最好靠近顶部)。
www.century21.bh