在配置我的apache虚拟主机以使用mod_rewrite工作时遇到问题。我一直在启用mod_rewrite a2enmod rewrite
,我正在为我的虚拟主机
ServerName wpa.myserver.com
ServerAdmin webmaster@localhost
DocumentRoot "/var/www/wordpress"
<Directory "/var/www/wordpress">
AllowOverride All
Options +FollowSymLinks
Order allow,deny
allow from all
</Directory>
在apache重新加载时,我收到错误500,在我的日志文件中,我得到以下内容
Invalid command 'Rewrite', perhaps misspelled or defined by a module not included...
htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Rewrite test.html index.html
</IfModule>
# END WordPress
PS。以前我试图使用webmin来配置我的虚拟主机
答案 0 :(得分:1)
Rewrite test.html index.html
Rewrite
不是有效的声明。
你可能意味着RewriteRule
。