Home > Backend Development > PHP Tutorial > 如何实现不带后缀访问php文件

如何实现不带后缀访问php文件

PHPz
Release: 2020-09-05 11:52:04
Original
3058 people have browsed it

实现不带后缀访问php文件的方法:首先在htaccess文件中加入内容“RewriteRule ^(api/token) token.php [L]”;然后通过根目录下的“token.php”来接受“api/token”;最后修改配置文件。

如何实现不带后缀访问php文件

如何实现不带后缀访问php文件?

具体问题:

我使用了oauth2.0的php框架

http://localhost/api/token.php这样的地址

如何实现用http://localhost/api/token 访问

解决办法:

在token目录下放置index.php,即可实现用http://localhost/api/token访问http://localhost/api/token/index.php

Oh sorry……

那用稍微复杂一点点的方法吧。

在.htaccess文件最后加入两句话

RewriteEngine on
RewriteRule ^(api/token) token.php [L]
Copy after login

你就可以通过根目录下的token.php来接受api/token了

其中第一句很可能不要,因为.htaccess里可能之前出现过这句话了。

当然可能你当前没有.htaccess文件,那你可以自己创建一个。

你也可能发现.htaccess没有效果,那就要去配置httpd.conf了……

更多相关技术文章,请访问PHP中文网

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