将动态页面重定向到不同文件夹中的动态页面

发布于 2024-08-19 11:58:13 字数 365 浏览 5 评论 0原文

我当前的页面是这样设置的,其中“#”是每个用户的编号;

http://site.com/member.php?u=#

我想将其移动到同一站点上的不同文件夹,我将如何设置 .htacces,以便当某些内容转到上面的页面时,它们会自动重定向到此;

http://site.com/new_folder/member.php?u=#

我看过一些教程,向您展示如何将 member.php?u=234 移动到 /new_folder/member.php?u-234 - 但是当然,新会员一直在注册,即使他们不是我不想为大约 1700 个用户这样做。

任何帮助将不胜感激。

My current page is set up like this, where '#' is a number for each user;

http://site.com/member.php?u=#

I want to move it to a different folder on the same site, how would I set up .htacces so when some goes to the page above, they're automatically redirected to this;

http://site.com/new_folder/member.php?u=#

I have seen a few tutorials that show you how to move say member.php?u=234 to /new_folder/member.php?u-234 - But of course new members are registering all the time and even if they weren't I don't want to have to do that for about 1700 users.

Any help would be appreciated.

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

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

发布评论

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

评论(1

温柔女人霸气范 2024-08-26 11:58:13

它应该如下所示:

RewriteBase /
RewriteRule ^member\.php$ new_folder/member.php [NC,R=301,L]

并且初始查询字符串将自动附加到目标 URL 中。

It should be as follows:

RewriteBase /
RewriteRule ^member\.php$ new_folder/member.php [NC,R=301,L]

And the initial query string will be automatically appended to the destinaion URL.

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