Blogger Information
Blog 17
fans 0
comment 1
visits 21577
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
TP5和VUE同域名, 宝塔二级域名配置
Ant.
Original
972 people have browsed it

服务器管理我用的宝塔 , TP5 和VUE共存我采用了二级域名 , VUE www.XXXXXX.com , TP5 admin.xxxxxxx.com

二级域名先去解析到服务器 , 解析好了后 , 直接在宝塔上点开一级域名的网站设置 ,

1,登陆宝塔面板控制后台,选择网站 – 添加站点,添加带www的域名。注意:不能直接添加根域名。

宝塔面板二级域名绑定教程

2,然后在对应的网站目录中,添加二级域名对应的文件目录。

3,回到网站,点击设置,选择子目录绑定,设置填写二级域名,并选择对应的子目录。

宝塔面板二级域名绑定教程

注意:添加二级域名时不能在域名管理中绑定,这样会跳转到www域名的。

绑定好了后 , 把你的子目录指向public , 其实vue的dist文件是和TP5的源文件同级的

这个时候你会发现二级域名首页能访问了 ,, 但是有的会出现404的问题 , 这个是伪静态需要转化一下, 你可以直接复制public/.htaccess文件里面的内容, 去Apache转Nginx

或者你直接复制我的试试

  1. if (!-d $request_filename){
  2. set $rule_0 1$rule_0;
  3. }
  4. if (!-f $request_filename){
  5. set $rule_0 2$rule_0;
  6. }
  7. if ($http_host ~* "^admin.XXXXXXXX.com$"){
  8. set $rule_0 3$rule_0;
  9. }
  10. if ($rule_0 = "321"){
  11. rewrite ^/(.*)$ /index.php?s=$1 last;
  12. }

配置好了就可以访问了 , 另外如果你有多模块 , 需要多个二级域名去访问的,

不然就还有种方式 , 不需要子目录去创建, 直接添加站点这样的方式去做 ,下次分享创建站点的方式

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post