# Redirects RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{ENV:REDIRECT_STATUS} 200 RewriteRule .* - [L] RewriteRule ^\~([^/]*)$ /index.php?type=user&id=$1 [QSA,L] RewriteRule ^\+([^/]*)$ /index.php?type=group&id=$1 [QSA,L] RewriteRule ^\!([^/]*)$ /index.php?type=issue&id=$1 [QSA,L] RewriteRule ^([^/]*)/([^/]*)$ /index.php?type=$1&id=$2 [QSA,L] RewriteRule ^([^/]*)/([^/]*)$ /index.php?type=$1&id=$2 [QSA,L] RewriteRule ^install/([^/]*)$ /install/index.php?id=$1 [QSA,L] # File security Order allow,deny Deny from all Satisfy All