Skip to content

Instantly share code, notes, and snippets.

@Petah
Created February 4, 2013 09:26
Show Gist options
  • Save Petah/4705819 to your computer and use it in GitHub Desktop.
Save Petah/4705819 to your computer and use it in GitHub Desktop.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?parameter=$1 [NC]
<?php
var_dump($_GET);
array (size=1)
'parameter' => string 'bla' (length=3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment