I am working on a site which will have two levels the URL reaches
My objective is to have clean URL's like this...
http://domain.com/username/dosomething
My ugly URL's currently look like this...
http://domain.com/index.php?page=use...nd=dosomething
Code:RewriteEngine On RewriteRule ^([a-zA-Z0-9]+)$ index.php?page=$1&command=$2 RewriteRule ^([a-zA-Z0-9]+)/$1/$2 index.php?page=$1&command=$2


Reply With Quote
Bookmarks