我刚刚在 ubuntu 服务器 11.10 上用 apache2 自己解决了这个问题。
我的 /etc/apache2/sites-available/默认文件:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
我在 /var/www 目录指令中将 AllowOverride None 更改为 All。
我在 /var/www/.htaccess 中的 .htaccess 文件:
Options +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
最后我确保 include.load 在 mods-enabled 文件夹中,这是为了加载 mod_includes.so 模块。
sudo ln -s /etc/apache2/mods-available/include.load /etc/apache2/mods-enabled/include.load
这会在 mods-available 中创建一个指向 include.load 的符号链接。
最后重启apache
sudo service apache2 restart
这使它对我有用,希望你也能正常工作。
——托马斯