开发者

Redirect Dynamic Page to Dynamic Page In Different Folder

开发者 https://www.devze.com 2022-12-18 08:02 出处:网络
My current page is set up like this, where \'#\' is a number for each user; http://site.com/member.php?u=#

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 开发者_C百科to do that for about 1700 users.

Any help would be appreciated.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号