phpstudy的nginx配置虚拟主机方法
程序员文章站
2022-04-02 10:57:33
...
本文主要和大家分享phpstudy的nginx配置虚拟主机方法,希望能帮助到大家。
打开目录 nginx-conf
server { listen 80; server_name www.restfulapi.com/; //自己配置的虚拟域名 root "E:/phpstudy/WWW/restfulapi/restful";//写到你指向的最终rewrite地址 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; } }、
配置host,添加自己域名配置,例如
127.0.0.1 www
127.0.0.1 www.restfulapi.com
127.0.0.1 www.api.com
192.168.1.103 oatest1.com
重启nginx服务器
相关推荐:
win10 apache配置虚拟主机后localhost无法使用
以上就是phpstudy的nginx配置虚拟主机方法的详细内容,更多请关注其它相关文章!
推荐阅读
-
CentOS7 下nginx与PHP的安装与配置
-
apache中使用mod_gnutls模块实现多个SSL站点配置(多个HTTPS协议的虚拟主机)
-
apache禁止搜索引擎收录、网络爬虫采集的配置方法
-
在Linux系统上配置SNMP的方法
-
win7系统打开Excel提示配置标识不正确系统无法开始服务器进程的解决方法图文教程
-
smarty模板引擎从配置文件中获取数据的方法
-
linux服务器下通过iptables+Denyhost抵御暴力破解的配置方法
-
Windows下PHP安装路径配置错误导致Apache无法启动的解决方法
-
详解Nginx服务器中map模块的配置与使用
-
Nginx服务器下配置使用索引目录的教程