CodeIgniter Forums
Migrate CodeIgniter - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Migrate CodeIgniter (/showthread.php?tid=74007)



Migrate CodeIgniter - Rabiei - 07-07-2019

Hello everyone,
I currently use my website as www.abc.in i would like to migrate my domain to www.xyz.in/blog but i face with 500 error.

In config.php the value of base_dir is:

 
$config['base_url'] = "http://".$_SERVER['HTTP_HOST']."/";

And i change .htaccess as below:


[font=.SF UI Text][font=.SFUIText]<IfModule mod_rewrite.c>[/font][/font]
[font=.SF UI Text][font=.SFUIText]Rewrite Engine on[/font][/font]
[font=.SF UI Text][font=.SFUIText]RewriteBase /[/font][/font]
[font=.SF UI Text][font=.SFUIText]RewriteCond $ 1! ^ (Index \ .php | images | captcha | css | js | resources | robots \ .txt)[/font][/font]
[font=.SF UI Text][font=.SFUIText]RewriteCond% {REQUEST_FILENAME}! -F[/font][/font]
[font=.SF UI Text][font=.SFUIText]RewriteCond% {REQUEST_FILENAME}! -D[/font][/font]
[font=.SF UI Text][font=.SFUIText]RewriteRule ^ (. *) $ Index.php? / $ 1 [L, QSA][/font][/font]

[font=.SF UI Text][font=.SFUIText]RewriteCond% {HTTP_HOST}! ^ Www \ .xyz \ .in \ \blog[/font][/font]
[font=.SF UI Text][font=.SFUIText]RewriteRule ^ (. *) Http://www.xyz.in/blog/$1 [QSA, L, R = 301][/font][/font]


RE: Migrate CodeIgniter - mboufos - 07-08-2019

500 error is server side error check your servers logs for it


RE: Migrate CodeIgniter - InsiteFX - 07-08-2019

This may help you.

THE Ultimate Htaccess

See301 Redirect Entire Directory


RE: Migrate CodeIgniter - rakeshkota - 07-17-2019

500 error is internal server error


RE: Migrate CodeIgniter - ciadmin - 07-17-2019

AN error 500 can often arise if file/folder permissions/ownership are not correct. You might want to check those.