How to change the url of opencart from index.php?route=account/login to login and
index.php?route=account/register to register
How to change the url of opencart from index.php?route=account/login to login and
index.php?route=account/register to register
go to admin panel --> setting--> Use SEO URLs - Yes. Rename .htaccess.txt file to .htaccess
apache module mod-rewrite must be installed on server
you can also change the url by adding new rewrite rule ie: RewriteRule ^login/?$ index.php?route=account/login [L] #login page
and add the link ie www.example.com/login like wise you can do it for the register my problem is solved by doing.