关于windows下服务器支持IPV6的问题

   2024-05-11 09:41:20  
主要看PHP
D:\phpstudy_pro\Extensions\Nginx1.16.1\conf下面的nginx.conf

root 定义了工作空间,也就是我们php项目所在的目录。

加入index.php是为了让nginx能够识别php脚本,否则,在访问php文件时,会出现直接下载的情况。

需要用到得规则是:
    server {
         listen       80;         
         listen       [::]:80  ipv6only=on;
         server_name  ipv6.com;
         root  "C:/websd";
         location / {
             root   C:/websd;
             index  index.html index.htm index.java index.php;
             include  C:/websd/nginx.htaccess;
             autoindex off;
         }
     }


声明:本文系互联网搜索百度而收集整理,不以盈利性为目的,文字、图文资料源于互联网且共享于互联网。
如有侵权,请联系 hzy98999#qq.com (#改@) 删除。