php 在windows下配置虚拟目录的方法
程序员文章站
2022-05-13 20:29:27
...
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 5Options 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 7AllowOverride Options FileInfo 8 Order Deny,Allow 9Allow 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教程有兴趣的朋友有所帮助。
上一篇: mysql 备份与迁移 数据同步方法
推荐阅读
-
用windows下编译过的eAccelerator for PHP 516实现php加速的使用方法
-
Ubuntu14.04服务器环境下配置PHP7.0+Apache2+Mysql5.7的方法
-
php 在windows下配置虚拟目录的方法介绍_PHP
-
利用PHP脚本在Linux下用md5函数加密字符串的方法,linuxmd5
-
各位大神在IIS上配置PHP的那个文件谁可以发给我下
-
windows环境下php配置memcache的具体操作步骤_PHP
-
分享在PHP 7下安装Swoole与Yar,Yaf的方法教程
-
在Linux下安装PHP,APACHE,ORACLE,PERL的方法
-
在Linux下用C扩展PHP(打包成so)的方法
-
windows下PHP_intl.dll正确配置方法(apache2.2+php5.3.5)