php 在windows下配置虚拟目录的方法,php虚拟目录
程序员文章站
2023-12-31 19:46:16
...
php 在windows下配置虚拟目录的方法,php虚拟目录
1.先找到apache的配置文件 httpd.conf 找如如下代码:
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
把# Include conf/extra/httpd-vhosts.conf 去掉#号,如下:
Include conf/extra/httpd-vhosts.conf
保存。
2.打开 Apache 的 conf 目录下的 extra 文件夹下的 httpd-vhosts.conf 文件,用记事本打开,在末尾加入以下代码:
12 ServerName www.mydemo.com 3 DocumentRoot "D:/mydemo" 4 5 Options FollowSymLinks IncludesNOEXEC Indexes 6 DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml 7 AllowOverride Options FileInfo 8 Order Deny,Allow 9 Allow from all 10 11
3.再到C:->Windows->System32->drivers->etc目录,打开hosts文件。
在末尾添加如下代码:
1 127.0.0.1 www.mydemo.com
然后再创建D:\mydemo目录
再然后重启一下apache服务器。
在浏览器输入www.mydemo.com看看
推荐阅读
-
php 在windows下配置虚拟目录的方法,php虚拟目录
-
在Windows系统下使用PHP生成Word文档的教程,
-
有关在Windows下配置PHP Apache Optimizer失败的问题解决方案_PHP
-
php下防止单引号,双引号在接受页面转义的设置方法_PHP教程
-
php 在 windows 下扩展redis 的配置与说明
-
php在apache环境下实现gzip配置方法_PHP
-
在Windows下安装MySQL的图形管理工具phpMyAdmin_PHP
-
Windows7下PHP开发环境安装配置图文方法_PHP教程
-
在Debian系统下配置LNMP的教程,debianlnmp_PHP教程
-
在IIS7.0下面配置PHP 5.3.2运行环境的方法_PHP