发布于 2016-10-17 10:36:19 | 132 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的PHP设计模式,程序狗速度看过来!

PHP开源脚本语言

PHP(外文名: Hypertext Preprocessor,中文名:“超文本预处理器”)是一种通用开源脚本语言。语法吸收了C语言、Java和Perl的特点,入门门槛较低,易于学习,使用广泛,主要适用于Web开发领域。PHP的文件后缀名为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:APPIDEPHPphp5php5apache2_4.dll"
PHPIniDir "F:APPIDEPHPphp5"

在<IfModule mime_module>里面添加

AddType application/x-httpd-php .php

5.更改服务器默认目录

 
 1 #DocumentRoot "F:APPIDEPHPApache24/htdocs"
 2 DocumentRoot "D:aphproot"
 3 Alias /ap "F:APPIDEPHPApache24/htdocs"
 4 Alias /test "D:aphptest"
 5 Alias /temp "D:aphptemp"
 6 
 7 <Directory "D:aphproot">
 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:aphptest">
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:aphptemp">
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:APPIDEPHPApache24/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>
 


最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务