大家好我设置了以下htaccess文件以便重写网址:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.com [NC]
#RewriteRule (.*) http://www.mysite.com/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php
RewriteRule !\.(js|ico|gif|jpg|png|swf|css|htm|html|php5)$ index.php
php_flag magic_quotes_gpc Off
RewriteCond %{REQUEST_FILENAME} -d
AddType text/css .css
AddHandler php5-script .php
我想创建一个指向public_html文件夹中文件夹中的文件的iframe,但是根据上面设置的htaccess,我需要为这个文件夹及其内容设置一个例外 - 我该怎么做? / p>
EDIT ====================
我的文件夹结构设置如下,这是基于zend框架的应用程序的标准:
application
html
->importer
library
我希望任何对www.mysite.com/importer的引用都是正常的,而不是将导入器视为要传递给index.php文件的参数。
答案 0 :(得分:0)
如果您想限制网址重写到特定文件夹,只需在此文件夹中输入包含您要应用的规则的 .htaccess 文件。