htaccess不起作用的解决方法,AllowOverride All打开后出现403错误时解决办法

Posted __Rain丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了htaccess不起作用的解决方法,AllowOverride All打开后出现403错误时解决办法相关的知识,希望对你有一定的参考价值。

php程序的目录下有一个htaccess文件,这个文件起着对url重写的作用,但是不巧的,在我的应用程序里不起作用,baidu了一下,发现是

AllowOverride All,  这个选项没有打开,

这个选项,只能写在

<Directory />

</Directory>中,我在http.conf中打开了这个选项,结果网站出现了403禁止访问的错误,经查看,结果发现是

 

<Directory />
Options Indexes
AllowOverride None
#AllowOverride All
Order allow,deny
Allow from all
</Directory>

不应在/这个目录下,写这个选项,应在应用程序的目录下打开这个选项,

 写到www目录下

 

<Directory "http://www.cnblogs.com/WebRoot/Default"> 这里的相对目录是对于配置文件中的ServerRoot而言.
 
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn\'t give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.0/mod/core.html#options
# for more information.
#
    Options Indexes FollowSymLinks
 
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride All
 
#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all
 
</Directory>

 如果打开了这个选项,还不起作用,那么就得检查一下httpd.conf中打开了rewrite选项了没有

LoadModule rewrite_module modules/mod_rewrite.so

以上是关于htaccess不起作用的解决方法,AllowOverride All打开后出现403错误时解决办法的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess 自定义 503 页面不起作用

Yii2 301 从原始 url 重定向到 .htaccess 中对 SEO 友好的 url 不起作用,需要其他解决方案

通过 .htaccess 从 URL 中删除双斜杠不起作用

.htaccess 在 Xampp localhost 服务器上不起作用

.htaccess 拒绝所有-> 目录索引不起作用(拒绝所有和白名单文件)

Htaccess 重写链接在 .htaccess 文件中不起作用