Categories
.htAccess

CakePHP Tutorial: htaccess Redirecion Rules and modrewrite Tips

How to redirect all old wordpress url to new website or wordpress blog using htaccess – CakePHP Tutorial: htaccess Redirecion Rules and modrewrite Tips

If you have a website or blog that was first developed in WordPress and then if you decided to convert it into some other platforms like cakephp, joomla, drupal website or else. Then you may want to install wordpress again in blog folder. Then the structure of your website will be like this

http://www.abc.com/ – inititally a wordpress blog, now a cakephp app

http://www.abc.com/blog/ – becomes the new wordpress blog’s address

Now the issue comes here is

How do I redirect visitors who arrive on the site through bookmarks or not-yet-updated search engine indexes so that they can land on the new wordpress blog address?

CakePHP’s htaccess

First thing you should know about CakePHP and htaccess: there are 3 htaccess files so we need to know which is the correct file to add our redirection rule.

But for this purpose, all we need to do is edit the .htaccess file in the cake app directory, the file which contains the following contents initially:

RewriteBase /
RewriteRule    ^$    webroot/    [L]
RewriteRule    (.*) webroot/$1    [L]

Since the wordpress blog has only a few posts, I added the following redirect rules at the top of the htaccess file. You might have to change the patterns depending on how your wordpress permalinks and tags were setup.

Redirect 301 /post-name-1/ /blog/post-name-1/
Redirect 301 /tag/tech/ /blog/tag/tech/

Final Result

Whenever someone types in or land at http://www.abc.com/post-name-1/, they will be now redirected to http://www.abc.com/blog/post-name-1/

I know this is not a robust and great solution but if you have Sitemap of all your blog posts then you can do the above trick very easily.

See my blog sitemap here www.vaseemansari.com/blog/sitemap.xml and you can see the url of all blog posts, now you need to copy the url and change it in .htaccess file and you are done with the trick. Have fun and feel free to ask me if you have any confusions in mind regarding the above tutorial of htaccess.

Thanks

By Vaseem Ansari

Hey guys this is Vaseem Ansari, 27 years old, Software & Web Developer, Blogger & works on Wordpress Plugin Themes Development, PHP MySql Programming and Open Sources Technologies.
It takes a while for me to build trust in someone new. I am honest, thoughtful. I'm Glad I'm Me No one looks The way I do. No one walks the way I walk. No one talks the way I talk. I am me. There's no one else I'd rather be! Have fun reading this blog and don't forget to subscribe to the feed to keep updated on the latest articles.

24 replies on “CakePHP Tutorial: htaccess Redirecion Rules and modrewrite Tips”

Hey very nice website!! Man .. Beautiful .. Amazing .. I’ll bookmark your web site and take the feeds also¡­I’m happy to find a lot of useful information here in the post, we need develop more strategies in this regard, thanks for sharing. . . . . .

Oh my goodness! a tremendous article dude. Thank you Nonetheless I am experiencing difficulty with ur rss . Don’t know why Unable to subscribe to it. Is there anybody getting identical rss problem? Anybody who knows kindly respond. Thnkx

I’ve been searching in google for some home and garden ideas and accidentally found this http://www.vaseemansari.com website.
It was a helpful experience for me to go through this webpage. It definitely stretches the limits with the mind when you learn useful info and make an effort to interpret it properly. I am going to glance up this web site oftentimes on my PC. Thanks for sharing

Another possibility would be to use the cakephp-internal routes facilities. One could for example create a Controller responsible for redirection and route every blog entry’s permalink to it. This gives you a little more flexibility in case you want to programmatically influence the redirection.

Leave a Reply

Your email address will not be published. Required fields are marked *