重写除白名单之外的所有URL到index.php

时间:2013-01-17 10:49:23

标签: php apache .htaccess

.htaccess我写过:

AddDefaultCharset UTF-8
RewriteEngine on

RewriteCond $1 !^(index\.php|images|test|css|js|files|wiki|sitemap\.xml|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ index.php/$1 [L]

但我有两个问题:

  1. http://example.com/ajax/index.php未转换为http://example.com/index.php/ajax/index.php
  2. 我可以看到任何列入白名单的目录,如何防止这种情况?

1 个答案:

答案 0 :(得分:1)

试试这个:

AddDefaultCharset UTF-8
RewriteEngine on

RewriteCond %{REQUEST_URI} !^(index\.php|images|test|css|js|files|wiki|sitemap\.xml|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ index.php/$1 [L]

Options All -Indexes
  • 最后一行应该修复列表,使用请求uri条件应该修复重写。