
方法一:使用httpd-vhosts
(相关推荐:apache)
进入apache配置目录,如/usr/local/apache/conf/
打开httpd.conf文件
配置多个监听窗口81,82
ServerName localhost:81 # Listen 80 Listen 81 Listen 82
找到#Include conf/extra/httpd-vhosts.conf,去掉#号,解除注释
进入/usr/local/apache/conf/extra目录,打开httpd-vhosts.conf文件
配置NameVirtualHost *:81
ServerAdmin host1.example.com DocumentRoot "/home/public/web/host1" ServerName localhost:81 ServerAlias localhost:81 ErrorLog "logs/host1.example.com-error_log" #CustomLog "logs/host1.example.com-access_log common" ServerAdmin host2.example.com DocumentRoot "/home/public/web/host2" ServerName localhost:82 ErrorLog "logs/host1.example.com-error_log" #CustomLog "logs/host1.example.com-access_log common"
方法二:只修改 httpd.conf
系统特点: 商品多级分类检索、搜索,支持同一商品多重分类,自由设置显示式样 自由设置会员类型,自由设置权限项目,自由分配每种会员类型和每个会员的权限 灵活的商品定价,最多12级价格自由分配给各种会员类型或会员,也可针对单会员单商品特殊定价 强大的会员管理、帐户管理、订单管理功能和一系列帐务查询统计功能 灵活的会员积分系统,自由设置每个积分事件的积分计算方法 灵活的网站内容发布、管理系统,每个栏目可
进入apache配置目录,如/usr/local/apache/conf/
打开httpd.conf文件
配置多个监听窗口,81,82
Listen 81 Listen 82
并在文件的最后增加如下内容:
DocumentRoot /home/public/web/host1 ServerName localhost:81 Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all DocumentRoot /home/public/web/host2 ServerName localhost:82 Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all
apache不同版本 目录权限设置
1、old使用
Order allow,deny Allow from all
2、new使用
Require all granted
3、new example
#add for WWW Listen 91DocumentRoot "D:/IDE/WWW" ServerName localhost:91 Options Indexes FollowSymLinks AllowOverride None Require all granted









