您好,登錄后才能下訂單哦!
這篇文章主要介紹nginx中怎么隱藏php,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
nginx中隱藏php的方法:首先打開相應的配置文件;然后修改內容為“server{listen 80;server_name jiqing.dexin.com;index index.html index.php...”即可。
nginx 配置隱藏index.php效果
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; } }
完整如下
server { listen 80; #listen [::]:80 default_server ipv6only=on; server_name jiqing.dexin.com; index index.html index.htm index.php admin.php; root /home/wwwroot/default/dexin/dragon/public; #error_page 404 /404.html; include enable-php-pathinfo.conf; location /nginx_status { stub_status on; access_log off; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } location ~ /\. { deny all; } location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; } } access_log /home/wwwlogs/access.log; }
它的功能很簡單,如果請求的文件不存在,自動加上index.php。
這樣,它既支持index.php/Home/index。也支持/Home/index。
以上是“nginx中怎么隱藏php”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。