I want to rewrite some url by using .htaccess rewrite
I have url something like this:
domain.com/app/index.php/appmedia/default/login
and want to rewrite users to
domain.com/app/index.php/zurmo/default/login
So, what will happen is users will see appmedia in browser but in the backend it will access zurmo
I'm new to php and have read some blogs like this have no luck
Also, have tried this
RewriteEngine On
RewriteRule ^app/index.php/appmedia/default/login.*$ http://domain.com/app/index.php/zurmo/default/login [R=301,L]
it says The page isn't redirecting properly
Edit of .htaccess file
RewriteEngine On
RewriteRule ^app/index.php/appmedia/default/login.*$ http://mydomainx.com/app/index.php/zurmo/default/login [R=301,L]