.htaccess不会让我进入子文件夹

时间:2013-11-14 16:46:09

标签: .htaccess joomla

我在托管中有joomla,它工作正常。 但是我想为一个应用程序创建一个小型的web服务,所以我在我的根文件夹中创建了一个子文件夹,可以这样访问:www.mydomain.com/myfolder

问题是,.htaccess会自动将我重定向到joomla索引。我根本没有.htaccess配置的经验。我一直在阅读一些教程,但每当我改变一些东西时,joomla就会停止正常工作。 这是我的htaccess文件:

rewriterule ^component/users/(.*)$ index.php?option=com_comprofiler&task=login [L]
rewritecond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
rewritecond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
rewritecond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
rewritecond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
rewriterule .* index.php [F]
rewriterule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
rewritecond %{REQUEST_URI} !^/index\.php
rewritecond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
rewritecond %{REQUEST_FILENAME} !-f
rewritecond %{REQUEST_FILENAME} !-d
rewriterule .* index.php [L]

创建子域不是一个选项(我只能访问ftp)

感谢

1 个答案:

答案 0 :(得分:0)

rewritecond %{REQUEST_URI} !^/index\.php之后,添加:

RewriteCond %{REQUEST_URI} !^/myfolder/

这应该排除任何/myfolder/请求被路由到joomla的index.php文件的请求。