在.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]
但是我有两个问题:
- http://example.com/ajax/index.php不要转换为http://example.com/index.php/ajax/index.php
- 我可以看到任何白名单目录的列表,如何防止这种情况?