gpt4 book ai didi

php - 如何在没有 ID 的情况下创建漂亮的帖子链接

转载 作者:行者123 更新时间:2023-12-04 22:12:49 25 4
gpt4 key购买 nike

我有一个这样的链接:

 http://localhost/mywebsite/post.php?title=my-post-title&id=2

或者

 http://localhost/mywebsite/post/my-post-title/2/  

(使用 mvc)

但我需要显示没有 ID 的链接,就像互联网上的许多网站一样。

例如:

 localhost/mywebsite/post/my-post-title/

最佳答案

您需要使用mod_rewrite 来美化您的网址。查看此链接:http://www.sitepoint.com/guide-url-rewriting/

下面是一个 mod_rewrite 的例子:

RewriteEngine on

RewriteRule ^mywebsite/(.*)/(.*)$ mywebsite/post/?title=$2 [QSA]

通过 - How to beautify the URL?

关于php - 如何在没有 ID 的情况下创建漂亮的帖子链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32440866/

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