I'm trying to create something short.com/ASWi7 -> short.com/index.php?h=ASWi7
so I tried using this code on my htaccess
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/index.php
RewriteRule ^(.*)$ /index.php?hash=$1 [L]
but the website loses the css and everything...i organized my site in folder etc... so how can i exclude all the folders or cetain files to be part of that rule?
Try the following:
!-f
checks for existing files!-d
checks for existing directoriesHope that helps.