我在网上搜索了一段时间,无法找到以下问题的正确答案:
我有一个工作.htaccess for codeigniter app(index.php已删除),如下所示:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
/awstats/.htaccess具有以下规则:
Options +ExecCGI
AddHandler cgi-script pl
DirectoryIndex awstats.pl
AuthUserFile /home/MY_USER/domains/mydomain.com/public_html/awstats/.htpasswd
AuthType Basic
AuthName "AwStats Protection"
<LIMIT GET POST>
require valid-user
</LIMIT>
当我没有使用带密码保护的awstats时 - &gt;一切都很好。 为awstats启用密码保护后 - &gt;当我尝试访问mydomain / awstats时,CI显示404错误。怎么能修好?
注意:mydomain.com / MY_USER仅仅是为了示例: - )
答案 0 :(得分:0)
而不是:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
你可以这样做:
RewriteCond $1 !^(index\.php|favicon\.ico|favicon\.png|crossdomain\.xml|robots\.txt|images|css|js|awstats)
RewriteRule ^(.*)$ /index.php/$1 [L]
因此,您可以明确授予对不需要通过CI前端控制器的任何内容的访问权限。这是一种更安全的技术,但要求您明确添加每个文件和目录(例如图像,CSS等)。