在phpstudy的nginx服務器下配置url重寫

在phpstudy集成環境下的nginx服務器下配置url重寫

直接在對應的vhosts.conf配置文件的location / {}中添加如下內容:php

location / {
           index  index.html index.htm index.php;
    #autoindex  on;
    if (!-e $request_filename) {
        rewrite ^(.*)$ /index.php?s=/$1 last;
        break;
    }

具體操做過程以下:html

一、找到對應的vhosts.conf配置文件

二、選擇所須要配置重寫url的站點

搞定!

相關文章
相關標籤/搜索