URL去除.php或.html等后缀

原文博客地址https://www.xiegaosheng.com/site/index
去除url中的.php .html .jsp等后缀;

例如我要访问localhost/logout这样的url 会访问的是 localhost/logut.php

只需要在项目目录下面创建一个 .htaccess的文件




RewriteEngine on  //on为打开,off为关闭
RewriteRule ^logout$ logout.php
RewriteRule ^login$ login.php

前提是apache开启rewrite

转载于:https://blog.51cto.com/11760810/2299072

你可能感兴趣的:(URL去除.php或.html等后缀)