日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

iis thinkphp隐藏index.php,thinkphp 隐藏index.php iis apache nginx

發(fā)布時(shí)間:2025/3/20 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 iis thinkphp隐藏index.php,thinkphp 隐藏index.php iis apache nginx 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

這篇文章介紹的內(nèi)容是關(guān)于thinkphp 隱藏index.php iis apache nginx ,有著一定的參考價(jià)值,現(xiàn)在分享給大家,有需要的朋友可以參考一下

針對(duì)不同的web服務(wù)器,iis7 apache nginx 可以使用不同的方法來進(jìn)行配置

1.iis7 在站點(diǎn)根目錄下添加web.config

添加內(nèi)容<?xml version="1.0" encoding="UTF-8"?>

重啟iis生效

2.apache 在根目錄下添加 .htaccess 添加內(nèi)容:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

重啟apache 生效

3.對(duì)于nginx 添加內(nèi)容到站點(diǎn)配置文件,然后重載配置文件生效

location / {

if (!-e $request_filename) {

rewrite ^(.*)$ /index.php?s=$1 last;

break;

}

}

相關(guān)推薦:

總結(jié)

以上是生活随笔為你收集整理的iis thinkphp隐藏index.php,thinkphp 隐藏index.php iis apache nginx的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。