Request routes aren't found after I made a change in the .htaccess file within Cpanel. Below is my .htaccess file, which redirects to the /public folder.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?omnisnco.com/
RewriteCond %{REQUEST_URI} !^/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /public/$1
RewriteCond %{HTTP_HOST} ^(www.)?omnisnco.com$
RewriteRule ^(/)?$ public/index.php [L]
And after doing this, my request routes are not being found!
Error message
The requested URL was not found on this server. An error was encountered while trying to use an
ErrorDocument
to handle the request.