我在创建laravel子域时遇到问题(我正在使用Laravel 5.5)
put
当我尝试访问profile.website.com/profile网站时,它抛出“无法获得任何响应错误”
有什么想法吗?
提前感谢您的答案
答案 0 :(得分:1)
Apache Docs显示了如何配置虚拟主机。基本上,子域将是指向同一DocumentRoot的单独的虚拟主机。 Laravel Docs还提供有关使用子域的一些说明。这是一个示例虚拟主机配置:
# Ensure that Apache listens on port 80
Listen 80
<VirtualHost *:80>
DocumentRoot "/www/laravel"
ServerName www.laravelapp.com
# Other directives here
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/www/laravel"
ServerName subdomain.laravelapp.com
# Other directives here
</VirtualHost>
正如已经提到的那样,您需要为指向您的服务器的子域提供A记录。