URL去除.php或.html等后缀
更新:HHH   时间:2023-1-7


原文博客地址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
返回web开发教程...