phpStudy使用配置

将代码放在www文件夹里面

点击‘其他选项菜单’ —— 打开配置文件,

nginx-conf:全局配置

vhosts.conf:二级项目配置

server {
        listen       80; //端口
        server_name  cw.dev.com ; //域名
        root   "D:/phpStudy/WWW/dudu/cw";  //路径
     
        location / {
            index index.php index.html index.htm;
            try_files $uri $uri/ /index.php?$query_string;
            #try_files $uri $uri/ /index.php$is_args$args;
            #autoindex  on;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}

站点域名管理:

phpStudy使用配置_第1张图片

打开 hosts ——添加访问域名 

phpStudy使用配置_第2张图片

你可能感兴趣的:(phpstudy)