Is it possible to make a short URL rule so that every word (except the root folders) after http://mydomain.com/ will get redirected to /index.php?permalink=$1 ?
examples:
http://mydomain.com/ - goto index.php (standard). http://mydomain.com/word - goto index.php?permalink=word
My .htaccess looks like this right now:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule /page/([0-9]+) /?page=$1