500内部服务器错误.htaccess

时间:2013-07-10 13:03:41

标签: apache

以下给出的.htaccess代码正在获取内部错误

RewriteEngine On

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

RewriteCond %{HTTP_HOST} !^([w]{3,3}[.]{1,1}){0,1}example.com$
RewriteCond %{HTTP_HOST} ^([0-9a-zA-Z-]*)[.]example.com$
RewriteRule ^$ portfolio/index.php?id=%1 [NC,L]

AuthType Basic
AuthName "If your not authenticated , then go seat in corner"
AuthUserFile /var/www/devRoot/.htpasswd
Require valid-user

但如果我只使用

AuthType Basic
AuthName "If your not authenticated , then go seat in corner"
AuthUserFile /var/www/devRoot/.htpasswd
Require valid-user

上面的代码是完美的。

问题是我无法理解为什么第一个代码不起作用。

日志:

[Wed Jul 10 13:12:11 2013] [alert] [client 1.23.112.242] /var/www/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configur                             ation
[Wed Jul 10 13:12:12 2013] [alert] [client 1.23.112.242] /var/www/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configur                             ation

解决了:

Did you ensure the RewriteEngine is on?

You'll want to verify that the mod is enabled - just look for rewrite.load symlink in /etc/apache2/mods-enabled. If not, run sudo a2enmod rewrite to enable it. Restart apache using sudo service apache2 restart and provided your .htaccess syntax is correct this will work.

Otherwise you will need to paste more information about your .htaccess file.

1 个答案:

答案 0 :(得分:0)

你没有启用重写引擎,取消注释httpd.conf中的行

LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so

您可以在/ etc / apache2 / mods中使用它,在这种情况下只需将其复制到mods-enabled并重新启动

那假设是linux?

你正在寻找的窗户

LoadModule rewrite_module modules/mod_rewrite.so
相关问题