为什么.htaccess阻止访问.php文件

时间:2011-05-02 20:22:00

标签: .htaccess webserver

我的网络服务器上有一个.htaccess文件,它从我的网址中删除了index.php。 当我想访问位于我的网络服务器的子目录中的.php文件时,问题出现了。

我的htacess文件是这样的:

# Turn on URL rewriting

RewriteEngine On

# Installation directory

RewriteBase /


# Protect application and system files from being viewed

RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]


# Allow any files or directories that exist to be displayed directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL

RewriteRule .* index.php/$0 [PT]

现在,如果我想访问这样的.php文件:

http://www.mydomain.com/subfolder/assets/17041f49/tiny_mce/tiny_mce_gzip.php

服务器返回500错误。

我该怎么做才能解决这个问题?

感谢。

1 个答案:

答案 0 :(得分:0)

也许你可以试试:

RewriteRule ^(.*).(css|js|xml|ico|png|gif|jpe?g)$ $1.$2 [L]
RewriteRule ^.*$ index.php [L,QSA]

然后在PHP usig中获取请求的URL

$url = $_SERVER["REQUEST_URI"];