如果不想每次打开前端页面的时候输入长长的 url 地址,可利用 wamp server 服务器搭建前端服务器,这样每次只需键入设置的地址即可访问前端页面。
前端服务器搭建很简单,只需改变两个文件
httpd-vhosts.conf
hosts
在 httpd-vhosts.conf 文件中,添加
<VirtualHost 127.0.0.27>
ServerName vue-express.local
DocumentRoot "D:\projects\vue-express\client"
<Directory "D:\projects\vue-express\client">
RewriteEngine on
AllowOverride All
</Directory>
</VirtualHost>
注意: 路径为你项目主 index.html 所在文件路径
在hosts文件中,添加
127.0.0.27 vue-express.local
27 可以随便写,但两个文件要保持一致
这样,重启服务器之后,在浏览器中输入 vue-express.local就可以访问前端页面