Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to change login page URL in Magento?

I want to change the URL for customer login in Magento.

From the URL,

www.mydomain.com/customer/account/login/

To something like this:

www.mydomain.com/login

How can I do this?

like image 960
MeenakshiSundaram R Avatar asked Oct 21 '22 09:10

MeenakshiSundaram R


1 Answers

I have not tried this method yet but you can achieve this with url rewrite.

Go to url rewrite and add custom url rewrite, give unique id path.

And in request path give www.mydomain.com/login this url and in target path give this url www.mydomain.com/customer/account/login/ magento internally consider target path for its use.

For more Info on url rewrite you can see here http://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/urlrewrite/index

http://blog.beetleweb.com/2012/10/creating-custom-magento-url-rewrites/

like image 72
Mufaddal Avatar answered Oct 25 '22 18:10

Mufaddal