thinkphp 隐藏index.php iis apache nginx
程序员文章站
2022-03-20 14:21:22
...
这篇文章介绍的内容是关于thinkphp 隐藏index.php iis apache nginx ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
针对不同的web服务器,iis7 apache nginx 可以使用不同的方法来进行配置
1.iis7 在站点根目录下添加web.config
添加内容
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="OrgPage" stopProcessing="true"> <match url="^(.*)$" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_HOST}" pattern="^(.*)$" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
重启iis生效
2.apache 在根目录下添加 .htaccess 添加内容:
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </IfModule>
重启apache 生效
3.对于nginx 添加内容到站点配置文件,然后重载配置文件生效
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
相关推荐:
thinkphp隐藏index.php/home,并允许访问其他模块
thinkphp隐藏中url的index.php,thinkphpindex.php_PHP教程
以上就是thinkphp 隐藏index.php iis apache nginx 的详细内容,更多请关注其它相关文章!
上一篇: 图文详解Android开发微信授权登录与微信分享解析
下一篇: 小程序如何使用wxs计算获取到的数据
推荐阅读
-
修改apache配置文件去除thinkphp url中的index.php
-
Nginx隐藏index.php和Pathinfo模式配置例子
-
[Linux] nginx的try_files指令实现隐藏index.php的重写
-
IIS7配置环境下隐藏index.php方法介绍
-
隐藏Nginx或Apache以及PHP的版本号的方法
-
在http请求头中隐藏Apache或者nginx的真实Server信息
-
Nginx配置PATHINFO隐藏thinkphp index.php
-
apache2, nginx, iis反向代理简单配置
-
[Linux] nginx的try_files指令实现隐藏index.php的重写
-
nginx、Apache、IIS服务器解决 413 Request Entity Too Large问题方法汇总