本篇文章主要介绍了"Nginx虚拟目录配置文件(包含PHP配置与重写)",主要涉及到方面的内容,对于PHPjrs看球网直播吧_低调看直播体育app软件下载_低调看体育直播感兴趣的同学可以参考一下:
server {listen 80;server_name www.xxxx.com;root /www/xxxx;location / {i...
server {
listen 80;
server_name www.xxxx.com;
root /www/xxxx;
location / {
index index.html index.htm index.php;
if ( !-e $request_filename ){
rewrite ^/(.*)$ /index.php last;
break;
}
}
location ~ .*\.(php|php5)?$
{
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /etc/nginx/fastcgi.conf;
fastcgi_split_path_info ^(.+\.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;
}
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了Nginx虚拟目录配置文件(包含PHP配置与重写),包括了方面的内容,希望对PHPjrs看球网直播吧_低调看直播体育app软件下载_低调看体育直播有兴趣的朋友有所帮助。
本文网址链接:http://www.codes51.com/article/detail_170358.html
相关图片
相关文章