.htaccess - Website URL redirects to name/%20/auth/login -


i have website hosted on godaddy. when enter url thehotkey.in, url redirects thehotkey.in/%20/auth/login gives me blank page.

when go : thehotkey.in/auth/login, gives me distorted login form. every button click on , example, if click on register button on login page, redirects thehotkey.in/%20/auth/register gives me blank page.

if go thehotkey.in/index, gives me blank page well.

there sort of mis-redirection cant figure out how tackle it.

here my.htaccess more help:

<ifmodule mod_rewrite.c> rewriteengine on rewritebase /  rewriterule ^index\.php$ - [l]  rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d  rewriterule . /index.php [l]  rewriterule ^index.php/(.*)$ [l] </ifmodule> 

( didnt write code, bought code)

any suggestion appreciated.

the base url in fx_cpnfig file had space @ end of url address. due this, sae %20 in every redirected url . alright after removing space.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -