.htaccess 334 B

12345678910111213
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine on
  3. RewriteBase /
  4. RewriteCond %{HTTP_HOST} ^dev.phalapi.net$
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. RewriteCond %{REQUEST_URI} !^/phalapi/public/
  8. RewriteRule ^(.*)$ /phalapi/public/$1
  9. RewriteRule ^(/)?$ index.php [L]
  10. </IfModule>