我不明白为什么我的网址重写不起作用

发布于 2024-10-16 11:56:46 字数 586 浏览 1 评论 0原文

嘿伙计们。 我是 url 重写的新手,但我似乎无法弄清楚为什么这不起作用

我有链接: http://thoughtsmash.com/profile.php?name=1

我想重写为: http://thoughtsmash.com/profilename/1

我的 .htaccess 文件中有这个:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]
RewriteRule ^/profilename/([0-9_]+)$ /profile.php?name=$1 [NC]

但它什么也没做!删除“www”。工作正常,但其余部分不行。有什么想法吗?谢谢

Hey guys.
I'm new to url rewrites but I can't seem to figure out why this is not working

I have the link: http://thoughtsmash.com/profile.php?name=1

That I want to rewrite to: http://thoughtsmash.com/profilename/1

and I have this in my .htaccess file:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]
RewriteRule ^/profilename/([0-9_]+)$ /profile.php?name=$1 [NC]

But it does nothing! The removal of the "www." works fine but the rest doesn't. Any ideas as to why? Thanks

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

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

发布评论

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

评论(1

破晓 2024-10-23 11:56:46

试试这个:

Options +FollowSymlinks
RewriteEngine on

RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]

RewriteRule ^profilename/([0-9_]+)$ /profile.php?name=$1 [NC]

请注意,我添加了 RewriteBase 并删除了前导 /

Try this:

Options +FollowSymlinks
RewriteEngine on

RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]

RewriteRule ^profilename/([0-9_]+)$ /profile.php?name=$1 [NC]

Note that I added RewriteBase and removed leading /

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