我有一個Symfony 2項目,我不得不使用.htaccess配置來隱藏前面的文件和網頁目錄,但在這個過程中,這意味着我無法訪問公共上傳我創建的文件夾。有沒有辦法可以爲該路線創建符號鏈接或例外?.htaccess打破文件路徑上傳
這裏是我當前的.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
# Explicitly disable rewriting for front controllers
RewriteRule ^/web/app_dev.php - [L]
RewriteRule ^/web/app.php - [L]
# Fix the bundles folder
RewriteRule ^bundles/(.*)$ /web/bundles/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
# Change below before deploying to production
RewriteRule ^(.*)$ /web/app.php [QSA,L]
#RewriteRule ^(.*)$ /web/app_dev.php [QSA,L]
</IfModule>
提前感謝!
爲什麼不把DocumentRoot指向web目錄? –