gpt4 book ai didi

php - 使用不带 .htaccess 的 PHP 创建 SEO 永久链接

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:37:59 25 4
gpt4 key购买 nike

目前,我的页面 URL 如下所示:

http://ourdomain.com/articles/?permalink=blah-blah-blah

我想将它们转换成:

http://ourdomain.com/articles/blah-blah-blah

如何使用 PHP 而不是 .htaccess 来完成此操作?

最佳答案

How can i accomplish this using php but not with .htaccess..

你不能。您需要告诉网络服务器如何处理实际不存在的 URL。在 Apache 中,这是在中央配置或 .htaccess 文件中完成的。

如果您的服务器恰好已启用 AccepPathInfo On,您可以尝试使用如下 URL

http://ourdomain.com/index.php/articles/blah-blah-blah

它将重定向到 index.php 并在 $_SERVER["PATH_INFO"] 变量中包含 articles/blah-blah-blah .这种方法被称为“穷人的 URL 重写”,因为您无法摆脱 URL 中的 index.php 部分。如果提到的设置已打开(我认为它是默认设置),您可以在不使用 .htaccess 文件的情况下执行此操作。

关于php - 使用不带 .htaccess 的 PHP 创建 SEO 永久链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5015352/

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