I\'m kinda new to URL Rewriting in .htaccess , and I tried to do it myself following some tutorials. No success though ....
I want to shorten http://www.example.co
http://www.example.co
A more generic approach, to have all the links you want as domain.tld/person/jon/
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # rewrites all urls to index.php/url RewriteRule .* index.php/$0 [PT]