php -- 配置与安装

1.php与apache安装路径

 

2.安装Apache服务 httpd -k install

开启关闭重启服务 http -k start/stop/restart

3.php.ini-development重命名为 php.ini

4.配置Apache的httpd.conf,关联php解析器。在最后添加

LoadModule php5_module "F:\APP\IDE\PHP\php5\php5apache2_4.dll"
PHPIniDir "F:\APP\IDE\PHP\php5"

在<IfModule mime_module>里面添加

AddType application/x-httpd-php .php

5.更改服务器默认目录

 1 #DocumentRoot "F:\APP\IDE\PHP\Apache24/htdocs"
 2 DocumentRoot "D:\a\php\root"
 3 Alias /ap "F:\APP\IDE\PHP\Apache24/htdocs"
 4 Alias /test "D:\a\php\test"
 5 Alias /temp "D:\a\php\temp"
 6 
 7 <Directory "D:\a\php\root">
 8     Require all granted
 9     Options Indexes FollowSymLinks
10     AllowOverride None
11     Order allow,deny
12     Allow from all
13     Satisfy all
14 </Directory>
15 <Directory "D:\a\php\test">
16     Require all granted
17     Options Indexes FollowSymLinks
18     AllowOverride None
19     Order allow,deny
20     Allow from all
21     Satisfy all
22 </Directory>
23 <Directory "D:\a\php\temp">
24     Require all granted
25     Options Indexes FollowSymLinks
26     AllowOverride None
27     Order allow,deny
28     Allow from all
29     Satisfy all
30 </Directory>
31 <Directory "F:\APP\IDE\PHP\Apache24/htdocs">
32     #
33     # Possible values for the Options directive are "None", "All",
34     # or any combination of:
35     #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
36     #
37     # Note that "MultiViews" must be named *explicitly* --- "Options All"
38     # doesn‘t give it to you.
39     #
40     # The Options directive is both complicated and important.  Please see
41     # http://httpd.apache.org/docs/2.4/mod/core.html#options
42     # for more information.
43     #
44     Options Indexes FollowSymLinks
45 
46     #
47     # AllowOverride controls what directives may be placed in .htaccess files.
48     # It can be "All", "None", or any combination of the keywords:
49     #   AllowOverride FileInfo AuthConfig Limit
50     #
51     AllowOverride None
52 
53     #
54     # Controls who can get stuff from this server.
55     #
56     Require all granted
57 </Directory>

 

php -- 配置与安装,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。