I have changed my site url structure. But, Google indexed urls are giving 404 not found error. Now, I need a .htaccess rewrite rule for,

From url: www.mydomain.com/topic-titles-here-t273.html

To url: www.mydomain.com/sub-folder/topic273.html

(Topic id must be cached and topic title must be removed.)

Some times, like this also,

From url: www.mydomain.com/topic-titles-here-t273-15.html

To url: www.mydomain.com/sub-folder/topic273-15.html

I searched a lot, for about three hours, But couldn't find correct answer. Please help.

link|improve this question

what server are you on? – mauris Feb 20 '11 at 9:48
hostmonster web hosting, it is the case of a phpBB3 forum, mod_rewrite enabled – user625118 Feb 20 '11 at 9:56
feedback

2 Answers

up vote 1 down vote accepted

I am a little unclear on what you are trying to do but

1

RewriteRule    ^([a-z|-]+)(\d+\.html)$    /sub-folder/topic$2    [NC,L]  

Would take the second group (just 273.html) and append accordingly, the first group would be everything before (topic-titles-here-t)

is that what you require? If so the regex could be tidied I just wanted to demonstrate the two groups

update - Ok according to edit the second group just becomes

(\d{3}-\d+\.html)

if 273 used in this example can be longer than 3 nubers if you know exact just amend that number otherwise use +

link|improve this answer
as per edit if the hyphen is there also would need to add that to the second group do you know exact number of digits in id? – Shaun Hare Feb 20 '11 at 10:03
Actually, the pages starts like 273.html, after five posts, the second page 273-5.html, third page 273-10.html and so on. I need to redirect all those indexed pages to be redirected to – user625118 Feb 20 '11 at 10:06
I see no change! Nothing happens. Same 404 not found. – user625118 Feb 20 '11 at 10:31
can you show an example, what did you try – Shaun Hare Feb 20 '11 at 10:37
Sorry, The problem came because of some numbers present in url title text I tested, like www.mydomain.com/topic-51-titles-here-t273-15.html. – user625118 Feb 20 '11 at 10:44
show 7 more comments
feedback
RewriteRule ^([a-z0-9|-]+)t(\d+\.html)$ /redirect/topic$2 [NC,R=301,L]
RewriteRule ^([a-z0-9|-]+)t(\d+-\d+\.html)$ /redirect/topic$2 [NC,R=301,L]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.