首頁 >後端開發 >PHP問題 >lnmp 怎麼隱藏index.php

lnmp 怎麼隱藏index.php

藏色散人
藏色散人原創
2022-10-21 10:12:011629瀏覽

lnmp隱藏index.php的方法:1、開啟「location ~ [^/].php」檔案;2、修改內容為「location ~ [^/].php」;3、去掉「# try_files $uri =404;」前面的#符號;4、新增「rewrite "^/(.*)$" /index.php last;」內容;5、重啟Nginx即可。

lnmp 怎麼隱藏index.php

本教學操作環境:windows7系統、PHP8.1版、Dell G3電腦。

lnmp 怎麼隱藏index.php?

lnmp啟用pathinfo並隱藏index.php

編輯下列區段:

location ~ [^/].php(/|$)
{       
    # comment try_files $uri =404; to enable pathinfo
    try_files $uri =404;
    fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
    #include pathinfo.conf;
}

第1行改為:

location ~ [^/].php

第4行註解掉, 即前面加

#
#try_files $uri =404;

去掉第8行的註解

include pathinfo.conf;

在location ~ [^/].php 上面新增區段

location /
{
    if (!-e $request_filename)
    {
        rewrite "^/(.*)$" /index.php last;
    }
}

重啟Nginx

service nginx restart

推薦學習:《PHP影片教學

以上是lnmp 怎麼隱藏index.php的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn