apache 配置模拟外网环境开发网站的方法
程序员文章站
2023-11-10 20:40:58
因为很多程序员在开发时都会在apache指定的网站目录下建一个文件夹放网站,当在本机测试时就是输入http://127.0.0.1/web1/这样访问网站,但上传到网站后是...
因为很多程序员在开发时都会在apache指定的网站目录下建一个文件夹放网站,当在本机测试时就是输入http://127.0.0.1/web1/这样访问网站,但上传到网站后是用域名的,这样就会造成路径不正确。
解决方法:
在c:\windows\system32\drivers\etc目录下找到hosts文件,用文本打开,在里面加一句
127.0.0.1 emtit.com
这样你就可以不设dns服务器就可以用www.emtit.com访问你的网站了,但这样还不能到达你的虚拟目录,打开apache的httpd.conf配置文件,在里面加上下面的代码
复制代码 代码如下:
namevirtualhost *:80
<virtualhost *:80>
serveradmin hjwtp2005@163.com
documentroot /flashgame
servername emtit.com
serveralias www.emtit.com
errorlog @rel_logfiledir@/dummy-host.example.com-error_log
customlog @rel_logfiledir@/dummy-host.example.com-access_log common
</virtualhost>
这样你就可以不设dns就可以像访问外网一样访问本机的网站了。
推荐阅读
-
apache 配置模拟外网环境开发网站的方法
-
linux网站服务Apache的安装与配置方法详解
-
Ubuntu14.04服务器环境下配置PHP7.0+Apache2+Mysql5.7的方法
-
Apache环境下配置多个ssl证书搭建多个站点的方法
-
pycharm配置pyqt5-tools开发环境的方法步骤
-
angular6根据environments配置文件更改开发所需要的环境的方法
-
在Mac开发环境Laravel Valet中配置运行Flarum论坛系统的方法详解
-
vscode(Visual Studio Code)配置PHP开发环境的方法(已测)
-
Win7、2008 64为Sublime Text3 配置python3的开发环境的方法
-
linux环境apache多端口配置虚拟主机的方法深入介绍