how to Url rewriting for shared hosting of godaddy sub folders

断了今生、忘了曾经 提交于 2019-12-23 03:22:42

问题


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.



来源:https://stackoverflow.com/questions/23192410/how-to-url-rewriting-for-shared-hosting-of-godaddy-sub-folders

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!