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.domain.com/folder1 和所有其他子目录(例如:www.domain.com/folder1/filename.php)重定向到索引页面。这意味着用户不应访问 folder1 及其子目录,而应将其重定向到索引页面。
试试这个代码:
RewriteEngine On RewriteRule ^folder1/(.*)$ /index.php [R=301] RewriteRule ^folder1$ /index.php [R=301]