Codeigniter Subfolder [closed]

时光毁灭记忆、已成空白 提交于 2019-12-14 02:03:18

问题


I have a CodeIgniter in my site say abc.com . I have copied full content to a sub folder in same site say abc.com/test . But I can't access the site using abc.com/test . Can anyone help me in this regards

Thanks


回答1:


Root htaccess

RewriteEngine on 
RewriteBase / 
RewriteCond $1 !^(index\.php|lib|robots\.txt|test) 
RewriteRule ^(.*)$ index.php/$1 [L]



回答2:


Before everything you should check whether you have change codeginiter base url at config file. your new base url is something like http://abc.com/test/ and rember to add slash after test/



来源:https://stackoverflow.com/questions/14028759/codeigniter-subfolder

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