I just deployed a php app on railway and I have a .htaccess file that should reroute every request to router.php (it worked flawlessly on the old hosting)...however on railway doesn't seem to work...do I have to set something specific to make it work?
Here's the file
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule (.+) router.php
</IfModule>