.htaccess无法正常工作并给我一个" 500内部服务器错误"警告

时间:2018-05-26 20:09:36

标签: php .htaccess codeigniter

我使用codeigniter框架来创建购物服务,我尝试使用以下代码重定向我的页面,但是Web浏览器给了我一个" 500内部服务器错误"这是为什么?

Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA] 

1 个答案:

答案 0 :(得分:0)

首先使用以下命令(Linux)检查是否已启用重写模式

sudo a2enmod rewrite 

并用以下几行修改您的.htaccess

<IfModule mod_rewrite.c>
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php
#RewriteRule ^([a-z]+)\/?$ $1.php [NC]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.*)$ $1.html
#RewriteRule ^([a-z]+)\/?$ $1.html [NC]

</IfModule>