我在我的Ubuntu安装上安装了一个apache2服务器(13.04,如果它有帮助)进行个人编程测试,我想知道是否可能,当我输入fakedomainname.dev
时,它会重定向到{ {1}}。我已经开始编辑localhost/testingSite
文件了,但这只允许我重定向到一个IP地址,我不认为localhost页面有自己的IP地址(是吗?)所以这样做不会工作。我目前可以通过/etc/hosts
访问该页面,但能够输入localhost/testingSite
会很有趣。
谢谢!
PS ......应该在Ask Ubuntu而不是Stack Overflow上发布吗?我不确定Ubuntu是否足够具体,所以我在这里发布了它。如果我说错了,请移动它!
答案 0 :(得分:1)
重定向到127.0.0.1
- 它相当于localhost。
这是我的/ etc / hosts文件:
root@vagrant:~# cat /etc/hosts
127.0.0.1 localhost stuff.dev
127.0.1.1 vagrant.vm vagrant
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
我有一个在端口8000上运行的烧瓶应用程序,我现在可以在stuff.dev:8000获取
root@vagrant:~# wget stuff.dev:8000
--2013-09-13 02:22:14-- http://stuff.dev:8000/
Resolving stuff.dev (stuff.dev)... 127.0.0.1
Connecting to stuff.dev (stuff.dev)|127.0.0.1|:8000... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2 [text/html]
Saving to: ‘index.html’
100%[================================================================================================================================================================>] 2 --.-K/s in 0s
2013-09-13 02:22:14 (229 KB/s) - ‘index.html’ saved [2/2]