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.
我在说 domain.com/site 上托管了一个博客,但已经建立了一个新网站。我想将所有来自 domain.com/site/anything 的流量重定向到 domain.com/home/ 以便任何流向旧站点上任何页面或文件的流量都被重定向到新主页。
我不确定在 .htaccess 文件中放置什么代码以及在服务器上放置它的位置
简单地:
Redirect 301 {old path} http://domain.com/{new path}
您可以将其放置在您网站的根目录下,使用旧路径,Apache 将重定向到新站点。
在你的情况下:
Redirect 301 /site/anything http://domain.com/home