Apache的mod_rewrite加载和工作,但不是由rssLounge应用程序“看到”

我打算在我的Raspberry PI(Wheezy 3.2.27)上安装和configurationRSS Lounge 。 这是当我去http://localhost/rsslounge

Apache模块“mod_rewrite”未加载

但是,重写模块已启用:

 ab@1234 : sudo apache2ctl -t -D DUMP_MODULES Loaded Modules: core_module (static) log_config_module (static) logio_module (static) version_module (static) mpm_prefork_module (static) http_module (static) so_module (static) alias_module (shared) auth_basic_module (shared) authn_file_module (shared) authz_default_module (shared) authz_groupfile_module (shared) authz_host_module (shared) authz_user_module (shared) autoindex_module (shared) cgi_module (shared) deflate_module (shared) dir_module (shared) env_module (shared) headers_module (shared) mime_module (shared) negotiation_module (shared) php5_module (shared) reqtimeout_module (shared) rewrite_module (shared) setenvif_module (shared) ssl_module (shared) status_module (shared) Syntax OK 

而且,我遵循这个testing ,服务器运行正常,所以问题在于Apache和RSSLounge之间的链接。

这是我的/etc/apache2/sites-availables/default文件:

 <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all RewriteEngine on </Directory> 

(rsslounge文件夹显然在/var/www/

我的configuration有什么问题?

RSSLounge在/ var / www中? 如果你安装了一个软件包,可能是在/ usr / share / rsslounge中,你的选项“RewriteEngine on”没有被使用。 把它放在虚拟主机中,可以放在你的所有目录中。