我想知道,我如何能夠訪問公共文件,放置在放置在/ applications/views /內的名爲'Sample'的文件夾中。允許訪問Codeigniter中的 application 文件夾內的文件夾
我試圖用.htaccess文件來做到這一點。
這是我現在使用的.htaccess文件。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /0.9.1
#Removes access to the system folder by users.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
#Checks to see if the user is attempting to access a valid file,
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#Enable access to the images and css folders, and the robots.txt file
RewriteCond $1 !^(index\.php|application\views\Sample\/public)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
任何幫助,將不勝感激。謝謝。
你的公共文件應該放在'。/ assets'中,而不是'。/ application'中,任何東西都不應該從該文件夾傳遞給瀏覽器。 –