URL去除.php或.html等后缀
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了URL去除.php或.html等后缀相关的知识,希望对你有一定的参考价值。
原文博客地址https://www.xiegaosheng.com/site/index
去除url中的.php .html .jsp等后缀;
例如我要访问localhost/logout这样的url 会访问的是 localhost/logut.php
只需要在项目目录下面创建一个 .htaccess的文件
<IfModule mod_rewrite.c>
RewriteEngine on //on为打开,off为关闭
RewriteRule ^logout$ logout.php
RewriteRule ^login$ login.php
</IfModule>
前提是apache开启rewrite
以上是关于URL去除.php或.html等后缀的主要内容,如果未能解决你的问题,请参考以下文章
PHP框架CodeIgniter--URL去除index.php