Apache虚拟目录配置及vue-cli反向代理的设置方法
程序员文章站
2023-11-10 15:26:40
配置需求来自于前后端分离。后台由于使用php或者java,但是前端使用vue,react这些框架时怎么和后端有效的数据通信。反向代理是个很好的选择,虽然jsonp也可以,单...
配置需求来自于前后端分离。后台由于使用php或者java,但是前端使用vue,react这些框架时怎么和后端有效的数据通信。反向代理是个很好的选择,虽然jsonp也可以,单并不好玩。
apache配置虚拟目录
-实际上线项目需要通过域名来访问,比如http://www.xxx.com,但在本机上如何配置虚拟域名来访问本机的项目呢?
1.找到c:\windows\system32\drivers\etc\hosts这个文件添加以下格式内容
127.0.0.1 www.mytest.com //你的虚拟域名
2.配置apache项目目录
1.找到 \apache\conf\httpd.conf 这个文件,修改内容
# virtual hosts include conf/extra/httpd-vhosts.conf (这行的注释#去掉)
2.找到\apache\conf\extra\httpd-vhosts.conf这个文件配置项目目录
<virtualhost *:80> ##serveradmin webmaster@dummy-host.example.com documentroot "c:/xampp/htdocs/mobileapp" ##你的后端项目目录 servername www.mytest.com ##虚拟域名 ##serveralias www.dummy-host.example.com ##errorlog "logs/dummy-host.example.com-error.log" ##customlog "logs/dummy-host.example.com-access.log" common <directory "c:/xampp/htdocs/mobileapp"> options indexes followsymlinks directoryindex index.html index.php allowoverride all order allow,deny allow from all </directory> </virtualhost>
3.proxytable代理配置,以vue-cli为例
proxytable: { '/api': { target: 'http://www.mytest.com/api', changeorigin: true, pathrewrite: { '^/api': '' } } },
这样就可以实现跨域访问了。
示例:
$.ajax({ url: '/api/indexlist.php', type: 'get', success: function (data) { that.list = data.data; console.log(data); } })
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。