- htaccess wildcard redirect to query string
- RewriteEngine On
- RewriteRule ^$ /index.php [L]
- RewriteRule ^index.php - [L]
- RewriteRule ^view.php - [L]
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ /view.php?id=$1 [L]
- RewriteCond %{REQUEST_URI} !^index.php
- RewriteCond %{REQUEST_URI} !^view.php
- RewriteRule ^(.*)$ view.php?id=$1 [L]