gpt4 book ai didi

php - 使用 Mod Rewrite 更改 URL 结构

转载 作者:可可西里 更新时间:2023-10-31 22:52:05 25 4
gpt4 key购买 nike

我想通过 htaccess 为 PHP 网站使用 mod rewrite。

网址结构如下:

example.com/ex.php?ez=DF004AE

它必须变成:

example.com/ex/DF004AE.htm

添加到我的 .htaccess 中的正确脚本是什么?

最佳答案

使用这个:

RewriteEngine On
RewriteRule ^ex/([^/]*)\.htm$ /ex.php?ez=$1 [L]

它将为您提供以下 URL:

example.com/ex/DF004AE.htm

如果您打算将其设为 .html(而非 .htm),只需在 RewriteRule 中添加 l。

关于php - 使用 Mod Rewrite 更改 URL 结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38326734/

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