windows 域名+虚拟目录 (php)
程序员文章站
2024-01-02 11:29:52
...
1.修改windows 域名
C:\WINDOWS\system32\drivers\etc\hosts
127.0.0.1 localhost
C:\WINDOWS\system32\drivers\etc\hosts
127.0.0.1 localhost
192.168.0.100 abc
127.0.0.2 a
2.修改apache的虚拟目录
C:\xampp\apache\conf\extra\httpd-vhosts.conf
ServerName tradesns
DocumentRoot D:/tradesns
Options FollowSymLinks IncludesNOEXEC Indexes
DirectoryIndex index.html index.htm default.htm index.php default.php
AllowOverride all
Order Deny,Allow
Allow from all
ServerName a
DocumentRoot D:/tradesns2
Options FollowSymLinks IncludesNOEXEC Indexes
DirectoryIndex index.html index.htm default.htm index.php default.php
AllowOverride all
Order Deny,Allow
Allow from all
推荐阅读
-
windows 域名+虚拟目录 (php)
-
windows中PHP 5.2.17 安装 eAccelerator方法_PHP教程
-
在Windows系统上安装PHP应用程序服务器
-
windows下zendframework项目环境搭建(通过命令行配置)_php技巧
-
windows定时执行PHP的技巧,windowsphp技巧
-
windows8.1下Apache+Php+MySQL配置步骤_PHP
-
redis在windows下安装和PHP中使用,redisphp_PHP教程
-
php的amqp扩展 安装windows
-
windows下配置php5.5开发环境及开发扩展,windowsphp5.5
-
windows的文件系统机制引发的PHP路径爆破问题分析