How to configure php server

王林
Release: 2023-03-07 08:12:02
Original
4508 people have browsed it

配置php服务器的方法:1、设置根目录、域名和目录权限;2、更改默认首页;3、更改监听端口,如80端口;4、配置虚拟主机,指定虚拟目录路径。

How to configure php server

服务器配置

(视频教程推荐:java视频教程

1、虚拟目录配置


#设置根目录
DocumentRoot "G:\\phpStudy\\PHPTutorial\\phpMyAdmin"
#设置域名
 ServerName www.phpmyadmin.com
 #目录权限
  
   #允许将目录结构用索引的方式展示
    Options +Indexes +FollowSymLinks +ExecCGI
    #允许覆盖;,用来做分布式部署
    AllowOverride All
    #执行顺序,先允许,后拒绝
    Order allow,deny
    #允许所有请求
    Allow from all
    Require all granted 
  
  
Copy after login

更改默认首页


    DirectoryIndex index.html index.php index.htm l.php
Copy after login

更改监听端口

Listen 80
Copy after login

2、虚拟主机配置


  DocumentRoot "C:\\web1"       #指定虚拟目录路径
  ServerName www.baidu.com     # 虚拟目录绑定的域名
  DirectoryIndex aa.php        # 默认首页
  
    Options -Indexes -FollowSymLinks +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    Require all granted
  
Copy after login

相关推荐:php培训

The above is the detailed content of How to configure php server. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!