博客列表 >TP5-隐藏url中的index.php

TP5-隐藏url中的index.php

灬彬的博客
灬彬的博客原创
2018年03月24日 17:27:261556浏览

tp5对URL简化,不做简化情况下我们访问的是localhost/public/index.php/index/index/index  ,做简化后省去index.php。

我们需要找到public下面的.htaccess文件

<IfModule mod_rewrite.c>  Options +FollowSymlinks -Multiviews  RewriteEngine On  RewriteCond %{REQUEST_FILENAME} !-d  RewriteCond %{REQUEST_FILENAME} !-f  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]</IfModule>

这样就可以直接访问localhost/index/index/index 了

上一条:作业7.0下一条:3.23作业
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议