nginx多域名配置與 pathinfo(/ 文件夾形式) URL訪問不支持配置

多域名支持(設置域名 www.ci.com)
nginx安裝目錄 whereis nginx 查看相關信息 php

1.查看nginx配置文件
    /etc/nginx/nginx.conf 裏面這兩個是否被註釋(必須開啓)
            include /etc/nginx/conf.d/*.conf;
            include /etc/nginx/sites-enabled/*;

2.在sites-enabled或者conf.d 下面新建 ci.conf(ci爲域名主體部分)

3.複製 /etc/nginx/sites-available/default 裏面的內容 粘貼到ci.conf裏面,更改 root 路徑就能夠。 nginx

4.編輯 /etc/hosts 內容
    添加一行 127.0.0.1    www.ci.com
this

5. 重啓 nginx
    service nginx restart或者 /etc/init.d/nginx restart (非root用戶要提權才能運行成功)
spa

6.打開你設置的域名瀏覽 rest



配置nginx文件夾形式URL(pathinfo)訪問支持
    只需要在對應的 ci.conf (域名www.ci.com其它域名相似)中
    
          location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                try_files $uri $uri/ =404;
                # Uncomment to enable naxsi on this location
                # include /etc/nginx/naxsi.rules
                if (!-e $request_filename) {
                rewrite ^(.*)$ /index.php?s=$1 last;
                break;
                }
        }
添加着色部分就能夠。
ci

相關文章
相關標籤/搜索