how to Url rewriting for shared hosting of godaddy

2019-05-31 05:45发布

问题:

I am trying to rewrite URL of my sub folders ,

I have mysite.php/subfolder/login/index.php where i want to rewrite the url into any encrypted format or want latest mysite.php/login/index.php where i want to hide the sub folder

Hope any can help i tried with ,htaccess but it didn't work ..

thank in advance ....

回答1:

try this:

RewriteRule ^login\/index\.php$ /subfolder/login/index.php [L]

That is the max i understood from your question.