Home > php教程 > php手册 > 虚拟主机中对PHP的特殊设置_php基础

虚拟主机中对PHP的特殊设置_php基础

WBOY
Release: 2016-05-17 09:08:17
Original
1322 people have browsed it

虚拟主机设置


ServerAdmin webmaster@hostmachine.com
DocumentRoot /www/virtual.com/htdocs
ServerName www.virtual.com
UserDir /www/virtual.com/htdocs
ScriptAlias /cgi-bin/ /www/virtual.com/cgi-bin/
ErrorLog /www/virtual.com/logs/error_log
CustomLog /www/virtual.com/logs/access_log common



目录设置

# 对该虚拟主机设置是否使用php
php_engine On
# 设置php出错信息的调试级别
php_error_reporting 1
# 设置是否记录php出错日志
php_log_errors On
# 设置php的出错日志文件
php_error_log /www/virtual.com/logs/php_error_log
# 设置一个php线程的最长存活时间
php_max_execution_time 180
# 设置用户临时上载目录
php_upload_tmp_dir /www/virtual.com/htdocs/tmp
# 设置包含头文件
php_include_path /www/virtual.com/htdocs/include


可执行目录设置


Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template