.htaccess没有在新的Debian 8设置上工作

时间:2017-03-01 16:13:18

标签: .htaccess debian

所以我刚刚在一台新服务器上安装了Debian 8,启用了a2enmod并重启了。但是我的链接不起作用,当我尝试进入可用的站点时,默认情况下我有这个:

<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /var/www
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    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

我正在尝试将None更改为all,但是这仍然不起作用并且在下面给出错误:

Not Found

在此服务器上找不到请求的URL / tos。

有人可以帮帮忙吗? 当我将它们更改为All而不是None时,它只是重新加载主页?

2 个答案:

答案 0 :(得分:0)

如果您将 AllowOverride无更改为 AllowOverride All ,该怎么办?

答案 1 :(得分:0)

我知道这要晚20个月了,但是如果有人在这里寻找答案,也许您只需要重新启动服务器即可。

类似:

sudo service apache2 graceful