Heim  >  Artikel  >  Backend-Entwicklung  >  关 于 解 析 php 的 问 题

关 于 解 析 php 的 问 题

WBOY
WBOYOriginal
2016-06-23 13:24:181001Durchsuche

在搭建discuz论坛的时候出的问题,上次搭建用的是2.2版本,这次下了个2.4版的Apache

发现有好多地方不一样;比如在order deny allow 方面就变了


Deny from all

变成

Require all denied


Allow from all

变成

Require all granted



今天在配置完后开始在浏览器安装,却是403错误,日志显示:

 No matching DirectoryIndex (index.html,index.php) found, and server-generated directory index forbidden by Options directive


添加设置:

虽然可以200码访问了,但是解析不了php;


之后又


它直接可以访问目录了;就是无法正常解析php呗


经过这一系列的整啊,其实都不是主要原因

最主要的是 AddType application/x-httpd-php .php

这才是解析php重要选项啊;

另外 DirectoryIndex  index.php  index.html 也要加上索引php文件,放在前面的优先考虑

不过允许所有用户访问还是要做的,Require all denied 换为Require all granted


路径在:http主配置文件中,上边的那些都没什么用,注释掉照样可以



还有就是关于 AllowOverride:

在 AllowOverride 设置为 None 时, .htaccess 文件将被完全忽略。当此指令设置为 All 时,所有

具有 “.htaccess” 作用域的指令都允许出现在 .htaccess 文件中。

htaccess文件(或者"分布式配置文件")提供了针对目录改变配置的方法, 即,在一个特定的文档目

录中放置一个包含一个或多个指令的文件, 以作用于此目录及其所有子目录。作为用户,所能使用的

命令受到限制。管理员可以通过Apache的AllowOverride指令来设置。





Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php文件输出Nächster Artikel:php怎么解析别人POST过来的body?