我正在尝试在 Windows 8 中安装 PHP-Laravel,并且我正在使用 Xamp 服务器(本地主机)。我正在关注安装 Laravel指南。根据本指南,我正在使用以下代码制作虚拟主机:
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/TssApp/public"
ServerName TssApp
<Directory "C:/xampp/htdocs/TssApp/public">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
</Directory>
</VirtualHost>
//Where "C:/xampp/htdocs/TssApp/public" is path of Laravel public folder
我还在 etc/hosts 中添加了以下行
127.0.0.2 TssApp
在我输入“http://TssApp”时执行本教程中提到的必要步骤后,它总是重定向到“http://tssapp/xampp/”而不是 Laravel 主页。我不知道我是否缺少任何东西。
注意:我可以通过“http://localhost/tssapp/public/”访问 laravel 主页,但想使用“http://TssApp”链接访问我的应用程序。
请帮助我解决这个问题。谢谢 。