在httpd.conf中使Include conf/extra/httpd-vhosts.conf生效 在conf/extra/httpd-vhosts.conf中加入如下代码 <VirtualHost *:80> DocumentRoot "c:\wamp\www\a"ServerName www ...
分类:
其他好文 时间:
2016-06-27 23:21:17
阅读次数:
476
<VirtualHost *:80>ServerAdmin webmaster@example.com ——管理员邮箱(可以随便写一个)DocumentRoot "/home/phpok-com" ——网站目录ServerName example.com —— 要绑定的域名ServerAlias w ...
分类:
Web程序 时间:
2016-06-23 12:24:01
阅读次数:
135
1、基于不同端口的虚拟主机配置 [root@lamp~]# vi /etc/httpd/conf/httpd.conf Listen 80 #设置监听不同的虚拟主机需要使用的端口 Listen 8080 Listen 8088 <Virtualhost*:80> #三个不同端口的主机 ServerN ...
分类:
其他好文 时间:
2016-06-16 23:13:50
阅读次数:
243
以下是有关于apache负载均衡和反向代理的配置<VirtualHost*:90>#虚拟主机默认访问端口
ServerAdmin*
ServerNameastg.vj.com#服务器访问名
ServerAlias*.astg.vj.com#服务器访问别名
ProxyRequestsOff
#<IfModulemod_rewrite.c>
#RewriteEngineon
#RewriteCond%{HT..
分类:
Web程序 时间:
2016-06-13 15:50:38
阅读次数:
544
在wamp环境下配置虚拟域名: 1.开启Apache的mod_rewrite功能模块 2.引入http-vhosts.conf 文件 3.添加VirtualHost 配置 找到:wamp/bin/apache/apache2.4.9/conf/httpd.conf 配置文件 打开: 查找rewrit ...
分类:
其他好文 时间:
2016-06-11 18:56:38
阅读次数:
147
1、安装 2、修改数据库密码,删除phpmyadmin ,用navicat 控制数据库 3、修改/Applications/XAMPP/xamppfiles/etc/extra/httpd-vhosts.conf 修改需要部署的网站属性 <VirtualHost *:80> ServerAdmin ...
分类:
Web程序 时间:
2016-06-11 01:57:58
阅读次数:
263
禁止非法添加域名论坛1.编辑虚拟主机文件vim/usr/local/apache2/conf/extra/httpd-vhosts.conf加入:<VirtualHost*:80>DocumentRoot"/tmp/123"---随便创建一个目录ServerNamewww.111.com---随便填写一个不存在的域名</VirtualHost>2.给/tmp/123目录禁止访问的权限ch..
分类:
其他好文 时间:
2016-06-08 17:21:57
阅读次数:
164
一、apache2.4代理转发tomcat7通过http_proxy做tomcat的端口转发:描述:将远程服务器映射到本地服务器的URL空间语法:ProxyPass[路径]!|url[键=值键=值...]][nocanon]上下文:serverconfig,virtualhost,directory状态:扩展模块:mod_proxy配置httpd.conf:#保证以下模块加载L..
1.1.1现象Apache启动,日志有如下错误:AH00548:NameVirtualHosthasnoeffectandwillberemovedinthenextrelease1.1.2原因配置虚拟站点的时候,根据说明配置如下:NameVirtualHost*:8080<VirtualHost*:8080>ServerNamewww.mysite1.com#DocumentRoot"C:/Rainman/Projec..
分类:
Web程序 时间:
2016-06-01 06:58:40
阅读次数:
517
<VirtualHost *:80> ServerAdmin slin DocumentRoot "/Users/slin/work/phpStudy/myPhp" ServerName myphp ServerAlias myphp ErrorLog "/private/var/log/apach ...
分类:
Web程序 时间:
2016-05-26 22:08:06
阅读次数:
304