博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
window下phpstudy的nginx配置虚拟主机
阅读量:4885 次
发布时间:2019-06-11

本文共 1499 字,大约阅读时间需要 4 分钟。

偶尔在网络上面百度了一下怎么在phpstudy里面使用nginx 于是记录下来 方便使用

在其他选项文件菜单中->打开配置文件->选择vhosts-conf

nginx的话使用

server {        listen       80;        server_name  你的虚拟目录名称;        root   "你要操作的目录路径";        location / {            index  index.html index.htm index.php;            #autoindex  on;            if ($request_filename !~ (static|robots/.txt|index/.php.*)) {                rewrite ^/(.*)$ /index.php?$1 last;                break;                }        }        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;        }}

 

之后最重要一点就是DNS解析了:在C:\Windows\System32\drivers\etc下打开hosts

加入你配置的域名解析到本地的代码例如

127.0.0.1       localhost                               这个是默认有的127.0.0.1       www.nginx.com

apache的虚拟主机的话代码可以参考

ServerAdmin fudesign2008@163.comDocumentRoot "你网站的路径" ServerName editor.fuyg.cn ServerAlias editor.fuyg.cn ErrorLog "logs/dummy-host.localhost-error.log" CustomLog "logs/dummy-host.localhost-access.log" combined
Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all

 

转载于:https://www.cnblogs.com/depravity/p/9563772.html

你可能感兴趣的文章
如何高效使用和管理Bitmap--图片缓存管理模块的设计与实现
查看>>
MUI(3)
查看>>
Easyui,界面1
查看>>
技术与业务的抉择————论程序员的“瓶颈”问题
查看>>
codevs1011 数的计算 2001年NOIP全国联赛普及组
查看>>
内置函数
查看>>
一个ListView怎么展示两种样式
查看>>
nmon性能分析工具(生成图表)
查看>>
mac上安装chromedriver
查看>>
jzoj1158-荒岛野人【扩欧,gcd,同余方程】
查看>>
[HTML 5] Styling with ARIA
查看>>
[D3] Creating a D3 Force Layout in React
查看>>
[AngularJS] New in Angular 1.3 - Performance Boost with debugInfoEnabled
查看>>
django进阶
查看>>
Longest Consecutive Sequence leetcode java
查看>>
P1816 忠诚
查看>>
14:Challenge 7(map大法好)
查看>>
1010. 邮寄包裹
查看>>
HDU 1394 (逆序数) Minimum Inversion Number
查看>>
UVa 12299 线段树 单点更新 RMQ with Shifts
查看>>