lnmp 怎麼隱藏index.php

藏色散人
發布: 2023-03-17 07:58:01
原創
1577 人瀏覽過

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!