访问GET变量PHP +的.htaccess

编程入门 行业动态 更新时间:2024-10-23 19:31:31
本文介绍了访问GET变量PHP +的.htaccess的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我用PHP开发一个网站。 我的.htaccess有这个重写规则:

I'm developing a website using PHP. My .htaccess has this rewrite rule:

RewriteEngine On RewriteRule ^book/([^/]*)\.html$ book.php?title=$1 [L]

所以,看起来像的网址:www.example/book.php?title=title-of-the-book 变成www.example/book/title-of-the-book.html

So the URL that looked like: www.example/book.php?title=title-of-the-book turns into www.example/book/title-of-the-book.html

在一个特定的情况下,从网站的另一个页面,我要链接到这样的页面: www.example/book.php?title=title-of-the-book?myfield=1 这则变成 www.example/book/title-of-the-book.html?myfield=1.html

In a specific case, from another page in the site, I want to link to pages like this: www.example/book.php?title=title-of-the-book?myfield=1 that then turns into www.example/book/title-of-the-book.html?myfield=1.html

作为治疗,一般使用PHP的方式,我不能存取权限的GET变量

Being ther, I cannot acces the GET variables using the usual PHP way

$variable = $_GET['myfield']

我该如何解决这个问题?

How do I solve this problem?

推荐答案

指定 [QSA] (查询字符串追加),这样你的网址后,你可以通过查询字符串。

Specify [QSA] (Query string append) so you may pass a query string after your url.

RewriteEngine On RewriteRule ^book/([^/]*)\.html$ book.php?title=$1 [QSA,L]

PS:你为什么要使用 * 在这里?岂不 + 套装好?

PS: Why are you using * here? Wouldn't + suit better?

更多推荐

访问GET变量PHP +的.htaccess

本文发布于:2023-10-31 16:30:36,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1546640.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:变量   PHP   htaccess

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!