php - Slim 4, why the ajax call succeed but it gives 404 error on cPanel?

one text

Solution:

Try this in your project root .htaccess file:

RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]

And this in your public/.htaccess file:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]

Source