$_GET and URL Rewriting for PHP(PHP 的 $_GET 和 URL 重写)
问题描述
URL 重写如何影响 PHP 的 $_GET 参数?
假设我有一个像 http://example.com/index.php?p=contact
这样的 URL,我使用 $_GET['p']
来告诉index.php
提供联系页面.如果我使用重写规则将 URL 转换为 http://example.com/contact
,$_GET['p']
是否仍能按预期工作?>
如果是这样,你能详细说明它为什么起作用吗?如果不是,可以使用什么策略来解决问题,以便页面在重写和不重写的情况下都能正常工作?
是的,这会按预期工作.
How does URL rewriting affect the $_GET
parameter for PHP?
Say I have a URL like http://example.com/index.php?p=contact
and I use $_GET['p']
to tell index.php
to serve the contact page. If I use a rewrite rule that converts the URL to http://example.com/contact
, will $_GET['p']
still work as expected?
If it does, could you elaborate on why it works? If not, what strategies could be used to solve the problem so that the page will work both with and without the rewrite?
Yes, that will work as expected.
这篇关于PHP 的 $_GET 和 URL 重写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP 的 $_GET 和 URL 重写
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01