How to hide suffix name in php

王林
Release: 2023-03-07 14:44:01
Original
2400 people have browsed it

php隐藏后缀名的方法是:1、在htdocs根目录下新建htaccess文件并编辑;2、修改apache配置文件,开启rewrite模块;3、重启apache服务器即可。

How to hide suffix name in php

具体方法:

(推荐教程:apache

首先在apache服务器下htdocs根目录下创建文件.htaccess,编辑以下内容:

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

然后修改apache配置文件:

/usr/local/httpd/conf/httpd.conf

开启rewrite模块:

LoadModule rewrite_module modules/mod_rewrite.so

保证:

Allowoverride ALL(配置文件有多个,请注意上下文)

最后重启apache

/usr/local/httpd/bin/apachectl restart
Copy after login

相关推荐:php培训

The above is the detailed content of How to hide suffix name in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template