将AllowOverride更改为All,但仍然没有

时间:2010-06-08 16:48:24

标签: .htaccess apache2

我试图在我当地的电脑网站上写一个.htaccess文件,
我意识到我需要设置AllowOverride All而不是None 搜索,找到文件/etc/apache2/conf.d/security 在我找到的文件中

#<Directory />
#AllowOverride None
#Order Deny,Allow
#Deny from all
#</Directory>

将其更改为

<Directory />
    AllowOverride All
    Order Deny,Allow
    Deny from all
</Directory>

输入

service apache2 restart

和...... .htaccess仍然无效:我

顺便说一下,

文件,保留一行,拒绝所有文件。

1 个答案:

答案 0 :(得分:5)

从原始海报回答:

  

终于找到了合适的地方:/ etc / apache2 / sites-available / default   搜索

<directory /var/www/>  part, and changed it to:

<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>