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.
我有几个已经重新设计的迷你站点。我需要删除所有子目录(有几千个所以我不能列出它们),例如:
webdomain.com/old-directory/info.html webdomain.com/another-directory/anotherpage.html
至:
webdomain.com/info.html webdomain.com/anotherpage.html
我可以这样做.htaccess吗?
.htaccess
谢谢
从您网站上的所有链接中删除所有第一级子目录。
将这些规则添加到文档根目录中的 htaccess 文件中,以重定向不受您控制的链接:
RewriteEngine On RewriteRule ^/?[^/]+/(.*)$ /$1 [L,R=301]