Hello, I just installed CyberPanel. Then I uploaded my website created from CakePHP. Previously I tested with Apache and it worked perfectly. But it turns out that my website doesn’t work on CyberPanel, all pages are error 404 Not found, even the main page.
This is the configuration that I use
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
I have followed this guide:
and this
Thank you for the help
