我的 htaccess 文件有问题..
http://www.example.com/customer/contract/download
http://www.example.come/customer/contract/upload
以上这些 url 应该可以工作,其余的 url 应该重定向到 maintenance.html。
我如何在我的 htaccess 文件中定义这些情况?
这是我的htaccess代码..
RewriteEngine on
IndexIgnore *
RewriteCond $1 !^(index\.php|public|images|robots\.txt|favicon\.ico|redirigir\.php)
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteRule ^(.*)$ public/maintenance.html [L]