tp5.0.11URL重写隐藏应用的入口文件index.php
程序员文章站
2022-04-17 15:52:36
...
tp5中隐藏url连接中的index.php
在tp5中,如果你想隐藏掉URL 链接中的index.php;只用 模块/控制器/方法就访问网站,若果你已经在网上搜了很多blog,结果还是没好,试下下图的方法:
如上图的目录下建.htaccess文件,内容如下:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>
推荐阅读
-
tp5.0框架隐藏index.php入口文件及模块和控制器的方法分析
-
tp5.0框架隐藏index.php入口文件及模块和控制器的方法分析
-
tp隐藏应用的入口文件index.php 服务器的配置
-
tp5.0.11URL重写隐藏应用的入口文件index.php
-
ThinkPHP5.X PHP5.6.27-nts和Apache通过URL重写来隐藏入口文件index.php
-
ThinkPHP32URL重写隐藏应用的入口文件indexphp
-
ThinkPHP32URL重写隐藏应用的入口文件indexphp
-
ThinkPHP通过URL重写隐藏应用的入口文件index.php
-
ThinkPHP5.X PHP5.6.27-nts和Apache通过URL重写来隐藏入口文件index.php