当前位置:Gxlcms > PHP教程 > PHP网址怎么隐藏后缀

PHP网址怎么隐藏后缀

时间:2021-07-01 10:21:17 帮助过:119人阅读

PHP网址怎么隐藏后缀

首先htdocs根目录下创建文件htaccess并写入规则将URL重写;

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [L]

然后打开Apache配置文件,将rewrite模块开启,并将AllowOverride后边None改为ALL;

微信截图_20200520161258.png

微信截图_20200520161611.png

最后重启Apache服务即可;

推荐教程:《PHP教程》

以上就是PHP网址怎么隐藏后缀的详细内容,更多请关注Gxlcms其它相关文章!

人气教程排行