本文介绍了改变了的AllowOverride所有,仍然没有的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试着写在我的本地PC的网站.htaccess文件,
我已经意识到我需要设置的无所有的AllowOverride代替搜索,找到该文件/etc/apache2/conf.d/security在文件中,我发现

 #<目录/>
#AllowOverride无
#Order拒绝,允许
所有#Deny
#< /目录>
 

改成了

 <目录/>
    设置AllowOverride所有
    订单拒绝,允许
    所有拒绝
< /目录>
 

键入

 服务的Apache2重启
 

和...的.htaccess仍然没有奏效:我

顺便把文件保存一行,所有拒绝。

解决方案

从原来的海报答:

I tried to write a .htaccess file on my local pc's website,
I've realized I need to set AllowOverride All instead of Nonesearched, found the file /etc/apache2/conf.d/securityin the file I found

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

changed it to

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

typed

service apache2 restart

and... .htaccess still didn't work :I

the file by the way, holds one line, deny from all.

解决方案

Answer from original poster:

这篇关于改变了的AllowOverride所有,仍然没有的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 10:28