Htaccess File

vlucas/bulletphp-blog-example/master/web/.htaccess

REQUEST_FILENAME
<IfModule mod_rewrite.c>
  RewriteEngine On

  # Reroute any incoming requestst that is not an existing directory or file
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?u=$1 [L,QSA]
</IfModule>
Exit mobile version