我用這個重定向到index.php的所有呼叫(在這裏使用超薄框架):的.htaccess RewriteEngine敘述製作一個別名,重定向所有其它路由器的index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [QSA,L]
現在,因爲我不想要將文件存儲在公用文件夾中,但要保存在其他位置(並且仍可從domain.com/files訪問它們)。我發現,這確實是我需要:?
RewriteRule ^files/(.*)$ ../share/files/$1
但如何將這些合二而一..
這個規則是否有'RewriteRule^files /(.*)$ ../ share/files/$ 1'獨立工作? – anubhava