1. nginx配置访问:
A. 打开D:\phpstudy\nginx\conf\nginx.conf ,
server {
listen 80; //监听端口
server_name www.aaa.com; //访问URL
root "D:/phpstudy/PHPTutorial/WWW/AAAA/"; //项目目录, 注意一定要用'/', 也要用'/'结尾
location / {
index index.html index.htm index.php l.php;
autoindex off;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
phpstudy配置虚拟目录方法

最低0.47元/天 解锁文章
1369

被折叠的 条评论
为什么被折叠?



