我要设置服务器,例如。
当我请求www.mydomain.com(绑定到我的IP)时,服务器将路由到C:/ xampp / htdocs / home
当我请求xxx.xxx.xx.xx / proj1时,服务器将路由到C:/ xampp / htdocs / proj1
当我请求xxx.xxx.xx.xx / proj2时,服务器将路由到C:/ xampp / htdocs / proj2
可以设置吗? 否则我必须将所有其他项目移到我的主页文件夹中
下面是我尝试过的,但是没用
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName *
ErrorLog "C:/xampp/log/error_info"
CustomLog "C:/xampp/log/error_info" combined
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/home"
ServerName www.mydomain.com
ErrorLog "C:/xampp/log/error_home_info"
CustomLog "C:/xampp/log/error_home_info" combined
</VirtualHost>
谢谢