.htaccess replace (rewrite) $_GET variables in PHP URL(.htaccess 替换(重写)PHP URL 中的 $_GET 变量)
问题描述
我有一个类似于 example.com/index.php?p=test
的 URL,以便 PHP 将使用 $_GET['p'] 加载测试变量代码>.URL 已经可以简化为
example.com?p=test
;但是,我希望在我的 .htaccess
中将其简化为 site.com/test
.我该怎么做?
I have a URL that will be something like example.com/index.php?p=test
so that the PHP will load the test variable using $_GET['p']
. The URL can already be simplified to example.com?p=test
; however, I wish to simplify this in my .htaccess
to site.com/test
. How would i go about doing this?
推荐答案
将以下内容放入您的 .htaccess
文件中:
Place the following in your .htaccess
file:
RewriteEngine on
# The two lines below allow access to existing files on your server, bypassing
# the rewrite
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?p=$1 [QSA]
然后您可以从 example.com/whatever
访问 whatever
,如下所示:
You can then access whatever
from example.com/whatever
like the following:
$value = $_GET['p']; // "whatever"
这篇关于.htaccess 替换(重写)PHP URL 中的 $_GET 变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.htaccess 替换(重写)PHP URL 中的 $_GET 变量
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01