Home > OS >  My php routing doesn't work and getting 500 error code
My php routing doesn't work and getting 500 error code

Time:11-27

I have a PHP site and simple routing but the site doesn't seem to be working. I'm getting server internal error 500 code.

This is my htaccess file htaccess file

This is my index.php index.php file

This is my site.conf file for apache2 site.conf file

The website works fine with PHPStorm built-in web server. but it doesn't work when it is uploaded to the server. File permission seems to be okay.

CodePudding user response:

The error message is quite plain: autoload_real.php on line 25 is trying to require a non-existent platform_check.php file.

  • Related