Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 8th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. htaccess wildcard redirect to query string
  2. RewriteEngine On
  3. RewriteRule ^$ /index.php [L]
  4. RewriteRule ^index.php - [L]
  5. RewriteRule ^view.php - [L]
  6.  
  7. RewriteCond %{REQUEST_FILENAME} !-f
  8. RewriteCond %{REQUEST_FILENAME} !-d
  9. RewriteRule ^(.*)$ /view.php?id=$1 [L]
  10.        
  11. RewriteCond %{REQUEST_URI} !^index.php
  12. RewriteCond %{REQUEST_URI} !^view.php
  13. RewriteRule ^(.*)$ view.php?id=$1 [L]