lnmp隱藏index.php的方法:1、開啟「location ~ [^/].php」檔案;2、修改內容為「location ~ [^/].php」;3、去掉「# try_files $uri =404;」前面的#符號;4、新增「rewrite "^/(.*)$" /index.php last;」內容;5、重啟Nginx即可。
本教學操作環境: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中文網其他相關文章!