How to access my wordpress application using two URLs?

So this had been a constant issue for me but finally i got this working, thanks to this blog post.
http://www.velvetblues.com/web-development-blog/turn-off-wordpress-homepage-url-redirection/

It seems like adding this in the functions.php file for the enabled theme works. Pasting here for anyone who may be facing a similar issue.

 remove_filter('template_redirect','redirect_canonical'); 

I restarted the httpd and the php-fpm service, and now i am able to make it work as expected.