linux服务器nginx新增网站配置vhost
进去
cd /phpstudy/server/nginx/conf
在nginx/conf/vhosts下新增222.conf
server
{
listen 80;
server_name www.pdweb.cn pdweb.cn;
root /phpstudy/www/pdweb;
error_log /home/hosts_log/pdweb_error.log;
access_log /home/hosts_log/pdweb_access.log;
location / {
index index.html index.php;
if ($host = \'pdweb.cn\') {
rewrite ^/(.*)$ http://www.pdweb.cn/$1 permanent;
}
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
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;
}
access_log off;
}