I'm after some help with the following .htaccess code:
CODE
Options +Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$ profile.php?username=$1 [L]
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$ profile.php?username=$1 [L]
I just can't get it to work, I want to be able to go to myurl.com/myusername and it will show my account.
Also, how would I go about making /about go to about.php
Any help would be greatly appreciated.