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.
我需要将任何不是 index.php 的索引文件重定向到该文件。我这样做是为了万一在 URL 中明确命名了另一种类型的索引文件。这有望防止任何 404 文件未找到错误。
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} !^(.*/)index\.php$ [NC] RewriteRule ^ /profordable/index.php [L,R]