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.
我正在尝试将任何文件或文件夹从其位置重定向到根目录。
例如,
如果网址是
http://www.abc.com/xyz
或者
http://www.abc.com/page.html
那么它应该重定向到http://www.abc.com
请建议。
在你的 htaccess 中试试这个:
Redirect 301 / http://www.abc.com
您可以使用RedirectMatch:
RedirectMatch
RedirectMatch 301 ^.+$ /
或使用mod_rewrite:
mod_rewrite
RewriteEngine On RewriteRule ^.+$ / [L,R=301]