|
|
|
|
沙发#
发布于:2014-05-04 22:31
.htaccess 内容
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule> |
|
|
板凳#
发布于:2014-05-05 09:40
A3.1的apache是2.4的,规则里不支持Options -MultiViews中的 - 号,这里你可以直接把以下代码去掉
<IfModule mod_negotiation.c> Options -MultiViews </IfModule> 因为这个和apache2.4的规则冲突,并且环境默认配置过,没必要重复申明。 |
|