Mod_rewriter 简单重定向

发布于 2024-12-11 00:42:27 字数 396 浏览 0 评论 0原文

我需要一些关于 mod_rewiter 的帮助

我的 URL 有这个结构 http://mydomain.com/post.php?id=122/年/月/标题/

我需要新链接:

http://mydomain.com/year/month/title/" rel="nofollow">http://mydomain.com com/年/月/标题/ 我怎样才能用 mod_rewriter 做到这一点,请你帮助我! 谢谢

I need some help with mod_rewirter

My URL have this structure
http://mydomain.com/post.php?id=122/year/month/title/

i need to have the new link:

http://mydomain.com/year/month/title/
how can i do this with mod_rewriter, please can you help me!
thank you

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

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

发布评论

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

评论(1

旧情别恋 2024-12-18 00:42:27

http://corz.org/serv/tricks/htaccess2.php 这是一个不错的学习 apache mod_rewrite 引擎的页面。

我会给你一个例子,同时我仍然坚持你必须在你的 seo 友好网址上添加 id

RewriteRule ^/([0-9]+)/([0-9]{4})/([0-9]{2})/([A-Za-z0-9-]+) http://mydomain.com/post.php?id=$1/$2/$3/$4/ [NC]

如果我们假设你可以获得值以便日期

RewriteRule ^/([0-9]{4})/([0-9]{2})/([A-Za-z0-9-]+) http://mydomain.com/post.php?year=$1&month=$2&title=$3 [NC]

此外,你可以验证此链接上的任何正则表达式: http://www.regular-expressions.info/javascriptexample.html 或:http://www.gethifi.com/tools/regex

http://corz.org/serv/tricks/htaccess2.php it is a nice page to learn apache mod_rewrite engine.

And i'll give you an example while i'm still insisting that you have to add id on your seo friendly url

RewriteRule ^/([0-9]+)/([0-9]{4})/([0-9]{2})/([A-Za-z0-9-]+) http://mydomain.com/post.php?id=$1/$2/$3/$4/ [NC]

If we suppose you can get values in order to date

RewriteRule ^/([0-9]{4})/([0-9]{2})/([A-Za-z0-9-]+) http://mydomain.com/post.php?year=$1&month=$2&title=$3 [NC]

Also, you can validate any regex on this link: http://www.regular-expressions.info/javascriptexample.html or that: http://www.gethifi.com/tools/regex

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