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

玩了这么就得PHP的环境居然找不到相关像样的资料,经过不断地改进学习:

主要看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;
         }
     }

你可能感兴趣的:(服务器,php,运维)