I am working on integrating google login in my Phonegap app using Google OAuth. What happens is that while creating a client ID for my app, I have to choose \"Installed Appl
You can use Rewrite Rules too.
For example, I need this callback for Google : http://local.dev/users/login-google
http://local.dev/users/login-google
So I have set this URL in Google Console : http://localhost/JUMP/local.dev/users/login-google
http://localhost/JUMP/local.dev/users/login-google
And in apache, a simple redirect :
RewriteEngine on RewriteRule ^JUMP/(.+)$ http://$1 [R,L]