提前感谢您的帮助!
所以我有以下.htaccess代码。 它似乎工作。然而,它必须是现存中最臃肿的低效工作。只有更好的方法才能实现这一目标。
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
DirectoryIndex index.php index.html site-down.php
RewriteCond %{HTTP_HOST} !^example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
RewriteCond %{REQUEST_URI} !\.(htm|html|php|jpg|jpeg|txt|png|gif|js|css)$
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://example.com/$1/ [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/v1
RewriteRule ^(.*)$ v1/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME}index\.php -f
RewriteRule ^.*$ %0index.php [L]
RewriteCond %{REQUEST_FILENAME}index\.html -f
RewriteRule ^.*$ %0index.html [L]
RewriteCond %{REQUEST_FILENAME}site-down\.php -f
RewriteRule ^.*$ %0site-down.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}(index\.php|index\.html|site-down\.php) !-f
RewriteRule ^.*$ controller.php [QSA,L]
这就是我想要实现的目标。
由于每个请求都使用了htaccess文件,我真的需要这样做更有逻辑/效率。我在中间添加索引文件块的原因是它在检查重定向到controller.php时没有检查索引文件是否存在。
有什么想法吗?谢谢!