Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

.htaccess 393B

12345678910111213141516
  1. <IfModule mod_rewrite.c>
  2. <IfModule mod_negotiation.c>
  3. Options -MultiViews
  4. </IfModule>
  5. RewriteEngine On
  6. # Redirect Trailing Slashes...
  7. #RewriteRule ^(.*)/$ /$1 [L,R=301]
  8. # Handle Front Controller...
  9. RewriteCond %{REQUEST_URI} ^/api/
  10. RewriteCond %{REQUEST_FILENAME} !-d
  11. RewriteCond %{REQUEST_FILENAME} !-f
  12. RewriteRule ^ api.php [L]
  13. </IfModule>