gpt4 book ai didi

php - 使用 get 参数在 apache 中自定义 URL

转载 作者:行者123 更新时间:2023-12-05 06:38:20 25 4
gpt4 key购买 nike

我正在尝试弄清楚如何使用 apache 网络服务器和 php 重写 url。

下面的url是真正的未改写的url:

http://localhost:1337/rewritetest/index.php?id=12

我想通过

http://localhost:1337/rewritetest/index/12

我的索引文件是这样的:

<?php 
echo $_GET['id'];
?>

这可能吗? "new"url 不包含任何参数名称,所以我想我必须使用参数顺序来代替,但我不知道在那种情况下如何访问它们。

以下是我重写的内容:

RewriteCond %{QUERY_STRING} id=([-a-zA-Z0-9_+]+)  
RewriteRule ^/?index.php$ %1? [R=301,L]
RewriteRule ^/?([-a-zA-Z0-9_+]+)$ index.php?id=$1 [L]

有人知道我做错了什么吗?

最佳答案

it's located in the same folder as index.php

因此,鉴于 .htaccess文件位于 /rewritetest/.htaccess (相对于文档根,即 /.htaccess )然后...

RewriteRule ^/?([-a-zA-Z0-9_+]+)$ index.php?id=$1 [L]

如果您请求形式为 /rewritetest/index/12 的 URL然后是上面的RewriteRule pattern 实际上不会匹配任何东西。它尝试匹配“index/12”,但您的模式不包含斜杠,因此会失败。 (字符类里面的+是故意的吗?)

请尝试以下操作:

 RewriteRule ^(index)/(\d+)$ $1.php?id=$2 [L]

这显然专门匹配 URL 中的“index”。如果您总是重写为 index.php那么您真的不需要 URL 中的“索引”——除非这意味着不同的东西?这还假设 id 的值参数仅由数字组成。

重写更通用的.../<controller>/26.../<controller>.php?id=26 (如评论所述)然后尝试类似的方法:

 RewriteRule ^([\w-]+)/(\d+)$ $1.php?id=$2 [L]

在每个目录中 .htaccess files 在与 RewriteRule 匹配的 URL 路径上省略了斜杠前缀模式,所以 /?不需要。上面的模式也为 id 匹配 something ,不是任何。所以,/index/不匹配。


如果这是一个新站点,则不一定需要“重定向”(从 /index.php?id=12 回到 /index/12)。只有当您要更改现有站点的 URL 结构时,才真正需要这样做,而旧的 URL 已经具有入站链接并被搜索引擎索引。在这种情况下,您可以在内部重写之前执行类似以下操作:

RewriteBase /rewritetest/

RewriteRule %{ENV:REDIRECT_STATUS} ^$
RewriteCond %{QUERY_STRING} ^id=(\d+)
RewriteRule ^(index)\.php$ $1/%1 [R,L]

或者,对于更通用的 .../<controller>/26.../<controller>.php?id=26 (如上所述)然后更改 RewriteRule到:

RewriteRule ^([\w-]+)\.php$ $1/%1 [R,L]

针对 REDIRECT_STATUS 的附加检查环境变量是为了在将 URL 重写为 /index.php?id=12 后防止重写循环早些。

关于php - 使用 get 参数在 apache 中自定义 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46442116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com