在这里遇到XAMPP问题。我在本地运行dev env和测试服务器。 DHCP / DNS /测试。存在于同一服务器上并使用dev进行请求。路由到我的本地机器。问题:每当我请求dev。* url时,它都会正确地路由到我的本地计算机,但/ xampp /会被附加到url,我会获得xampp默认登录页面。
***vhost example***
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "C:\Domains\com.example"
<Directory "C:\Domains\com.example">
Require all granted
</Directory>
ServerName dev.example.com ***2 server names so i dont modify when i commit to server
ServerName test.example.com
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>
无论如何,不确定我的问题究竟在哪里......有人有什么建议吗?
答案 0 :(得分:0)
所以,像往常一样,我在向群众发帖后不久就明白了:D。
请参阅此处 - &gt; configuring virtual host and localhost redirecting to the xampp folder
我的所有要求都打击了#34; localhost&#34;首先改为 它将始终在本地路由,无论它是什么机器。
互联网+1 / Me 0