.htaccess的公共目录

时间:2009-01-13 16:53:02

标签: .htaccess mod-rewrite

我在index.php中有一个调度函数,所以URL如下:

/ blog / show转到

/index.php/blog/show

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>

我如何修改它,以便我可以将所有静态文件转储到公共目录中,但在URL中不公开访问它们。

例如/docs/lolcats.pdf访问

驱动器上的

/public/docs/lolcats.pdf

我试过这个

RewriteCond %{REQUEST_FILENAME} !f
RewriteRule ^(.*)$ public/$1 [QSA,L]

1 个答案:

答案 0 :(得分:14)

试试这个:

RewriteCond %{DOCUMENT_ROOT}public%{REQUEST_URI} -f
RewriteRule !^public/ public%{REQUEST_URI} [L]

如果要在根目录下的子目录中使用它:

RewriteCond %{REQUEST_URI} ^/subdir(/.*)
RewriteCond %{DOCUMENT_ROOT}subdir/public%1 -f
RewriteRule !^public/ public%1 [L]

我找到了另一个没有明确命名子目录的解决方案:

RewriteRule ^public/ - [L]
RewriteCond public/$0 -F
RewriteRule .* public/$0 [L]

重要的变化是使用-F代替-f,因为前者会触发子请求。