htaccess mod_rewrite 缩短为 SEO 友好的 URL

发布于 2024-12-11 06:21:39 字数 576 浏览 0 评论 0原文

我有这个地址

http://www.nfrases.com/tag.php?id_tag=10&id_frase=508

,我想让它更短,对 SEO 更友好(我不知道......欢迎建议)http://www.nfrases.com/tag/10 /508http://www.tag10name.nfrases.com/508

我需要有关如何编码的帮助,因为尝试使地址始终 是一个简单的事情http://www.nfrases.com如果用户访问 http://nfrases.comwww.nfrases.com 我尝试过但失败了:(

顺便使用了此代码:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.nfrases.com$
RewriteRule ^(.*)$ http://www.nfrases.com/$1 [R=301]

I have this address

http://www.nfrases.com/tag.php?id_tag=10&id_frase=508

that I would like to make it a lot shorter and more SEO friendly to something like (I don't know ... open to suggestions) http://www.nfrases.com/tag/10/508 or http://www.tag10name.nfrases.com/508

I need help with how to code this, because a simple thing as trying to make the address always http://www.nfrases.com case the user goes to http://nfrases.com or www.nfrases.com I tried and failed :(

Used this code by the way:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.nfrases.com$
RewriteRule ^(.*)$ http://www.nfrases.com/$1 [R=301]

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

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

发布评论

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

评论(1

×纯※雪 2024-12-18 06:21:39

http://www.nfrases.com/tag.php?id_tag=10&id_frase=508< /a>

变成

http://www.nfrases.com/10/508

,并将其添加到您的.htaccess

Options +FollowSymlinks -MultiViews
RewriteEngine On

RewriteRule ^([0-9]*)/(.*)/?$ /tag.php?id_tag=$1&id_frase=$2 [L,QSA]

未经测试。让我知道它是否适合您。

http://www.nfrases.com/tag.php?id_tag=10&id_frase=508

becomes

http://www.nfrases.com/10/508

with this in your .htaccess

Options +FollowSymlinks -MultiViews
RewriteEngine On

RewriteRule ^([0-9]*)/(.*)/?$ /tag.php?id_tag=$1&id_frase=$2 [L,QSA]

Untested. Let me know if it works for you.

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