Codeigniter subdirectory

I have CodeIgniter on my site say abc.com. I copied the complete content into a subfolder on the same site, say abc.com/test. But I cannot access the site using abc.com/test. Can anyone help me in this regard.

thank

+1


source to share


2 answers


Root htaccess



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

      

+1


source


Before all you have to check if you have base url for codebook in config file. your new base url is something like http://abc.com/test/ and try again adding the forward slash after the test /



0


source







All Articles