通过修改 .htaccess 文件来更改 url

发布于 2024-12-08 06:41:52 字数 278 浏览 0 评论 0原文

我需要帮助修改我正在开发的网站的 URL。

网址是:

domainname.com/view-post.php?title=post-title&pid=2

我只能让它说,

domainname.com/2.html

但需要它说

domainname.com/posts/post-title

任何帮助将不胜感激。

I need help with modifying the url of a website I am working on.

The url is:

domainname.com/view-post.php?title=post-title&pid=2

I can only get it to say

domainname.com/2.html

but need it to say

domainname.com/posts/post-title

Any help will be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘿嘿嘿 2024-12-15 06:41:52

我建议你使用类似的东西:

RewriteRule ^posts/(a-zA-Z0-9\-\.]+)/([0-9]+)/?$ view-post.php?title=$1&pid=$2 [NC,L,QSA]

或者

RewriteRule ^posts/([a-zA-Z0-9\-\.]+)/?$  view-post.php?title=$1 [NC,L,QSA]

I would suggest you to use something like:

RewriteRule ^posts/(a-zA-Z0-9\-\.]+)/([0-9]+)/?$ view-post.php?title=$1&pid=$2 [NC,L,QSA]

or

RewriteRule ^posts/([a-zA-Z0-9\-\.]+)/?$  view-post.php?title=$1 [NC,L,QSA]
一杯敬自由 2024-12-15 06:41:52

我找到了一个名为“URL Re writer Tool”的工具,您可以使用它来生成 htaccess 代码:在这里尝试一下: http://www.webconfs.com/url-rewriting-tool.php 对于那些想要在服务器上重写 URL 但不知道在 htaccess 中放入什么内容的人来说,它是完美的选择。

I found a tool called "URL Re writer Tool" which you can use to generate htaccess code: try it out here : http://www.webconfs.com/url-rewriting-tool.php It's perfect for those who want to Re Write the URLs on their server but don't know what to put in htaccess.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文