RewriteEngine On
RewriteBase /
# Always serve files that exist first
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
# If Var is always numeric, use this
RewriteRule ^\d+$ index.php?var=$1 [L]
# If Var is always word characters (a-z, 0-9), use this
RewriteRule ^\w+$ index.php?var=$1 [L]