Skip to content

Instantly share code, notes, and snippets.

@rmax
Created January 2, 2010 19:12
Show Gist options
  • Save rmax/267621 to your computer and use it in GitHub Desktop.
Save rmax/267621 to your computer and use it in GitHub Desktop.
RewriteEngine On
RewriteBase /test
RewriteRule ^articles/(\d+)-(.*)$ test.php?artid=$1&artn=$2 [L]
RewriteRule ^articles test.php?view=all [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ test.php?path=$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment