thinkphp6 + nginx + antd Admin-Vue解决跨域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp6 + nginx + antd Admin-Vue解决跨域相关的知识,希望对你有一定的参考价值。

参考技术A 我服务端是php,请求地址为 http://yourUrl.com/categoryList

location /
if (!-e $request_filename)
rewrite ^(.*)$ /index.php?s=$1 last; break;

if ($request_method = 'OPTIONS')
add_header Access-Control-Allow-Origin ' http://localhost:8080/' ;
add_header Access-Control-Allow-Credentials true;
add_header Access-Control-Allow-Headers 'token,Authorization';
add_header Content-Length 0;
return 204;

如何让nginx支持ThinkPHP框架

参考技术A   nginx不支持thinkphp的原因
  1
  ThinkPHP支持通过PATHINFO和URL
rewrite的方式来提供友好的URL,只需要在配置文件中设置
'URL_MODEL'
=>
2
即可。在Apache下只需要开启mod_rewrite模块就可以正常访问了,但是Nginx中默认是不支持PATHINFO的,所以nginx默认情况下是不支持thinkphp的。不过我们可以通过修改nginx的配置文件来让其支持thinkphp。
  让nginx支持pathinfo,支持thinkphp
  1
  我们打开nginx的配置文件,如果是想某个站点支持,请打开对应站点的配置文件
  如何让nginx支持ThinkPHP框架
  2
  我们注释掉配置文件中那些被我圈出来的语句(location
~
\.php$
……这一段里面的),我们将对这部分进行重写!
  如何让nginx支持ThinkPHP框架
  3
  将重写后的代码添加进去。
  如何让nginx支持ThinkPHP框架
  4
  添加的代码如下:
  .........................................
  location
/

  if
(!-e
$request_filename)

  rewrite
^/(.*)$
/index.php/$1
last;
  break;
  
  
  
  location
~
\.php

  fastcgi_pass
127.0.0.1:9000;
  fastcgi_index
index.php;
  include
fcgi.conf;
  set
$real_script_name
$fastcgi_script_name;
  if
($fastcgi_script_name
~
"^(.+?\.php)(/.+)$")

  set
$real_script_name
$1;
  set
$path_info
$2;
  
  fastcgi_param
SCRIPT_FILENAME
$document_root$real_script_name;
  fastcgi_param
SCRIPT_NAME
$real_script_name;
  fastcgi_param
PATH_INFO
$path_info;
  

以上是关于thinkphp6 + nginx + antd Admin-Vue解决跨域的主要内容,如果未能解决你的问题,请参考以下文章

tp6配置日志 - nginx下配置Thinkphp6网站 - tp6实现简单路由跳转

Thinkphp6---模板继承

dva+antd写的一个react例子--服务器nginx 的配置

极智开发 | nginx 部署 antd pro

ThinkPHP6使用mongodb报错Authentication failed.

thinkphp6+swagger-php配置管理接口文档