Permalinks and domain change, .htaccess redirect help please

whateverfree

BANNED
Joined
Jun 11, 2010
Messages
208
Reaction score
138
Hello
My old site has permalinks and url like this:

hxxp://www.uniquefree.com/2013/06/clone-dvd-with-free-premium-clonedvd-software-license-code/

and now I redesign my website and changed url to like this:

hxxp://uniquefree.com/clone-dvd-with-free-premium-clonedvd-software-license-code/

I have removed the www and DATE from the permalinks, how to write a .htaccess code to redirect all old posts to new url structure ?
It's very urgent !
Thanks
 
If you're using Wordpress, this can be done in Settings and then permalinks.
 
Put this in your htaccess file:

Redirect 301 oldURL newURL

Example:

Code:
Redirect 301 http://www.uniquefree.com/2013/06/clone-dvd-with-free-premium-clonedvd-software-license-code/ http://uniquefree.com/clone-dvd-with-free-premium-clonedvd-software-license-code/
 
if you are using wordpress, it will be automatically done. Dont worry about it..Or show me an example.
 
This is the solution...But it will be great if you write a function and redirect all old posts to new locations.. Otherwise it will be a mess writing .htaccess file

Put this in your htaccess file:

Redirect 301 oldURL newURL

Example:

Code:
Redirect 301 http://www.uniquefree.com/2013/06/clone-dvd-with-free-premium-clonedvd-software-license-code/ http://uniquefree.com/clone-dvd-with-free-premium-clonedvd-software-license-code/
 
Yes, I mean please help me create a .htaccess code that redirect more than 400 indexed post to new one, not only one url

Thanks
and yes, I am using Wordpress
 
What have you done on this so far? There are TONS of tutorials on the web to teach you to write .htaccess...

But...your best approach is to read the manual. It goes into depth explaining what they do and why they do it with examples.
 
I have tried both codes below but none of them work

RedirectMatch 301 http://www.uniquefree.com([0-9]+)/([0-9]+)/([0-9]+)/(.*)$ http://uniquefree.com/$4

RewriteRule ^([0-9]+)/([0-9]+)/(.*)$ /$3 [R=301,NC,L]
 
Last edited:
Many members asked you "ARE U USING WORD PRESS" why don't you tell them so they can give you right solution.
 
Sorry
I am using Wordpress, I know how to change the Permalinks, I want a solution to redirect all indexed pages from Google to my site, new urls

Thanks
 
Back
Top