Mod_Rewrite URL

ClollaTorge

New Member
Current URL:\[code\]http://localhost/blog/profile.php?username=Username&page_type=following\[/code\]I want it to be:\[code\]http://localhost/blog/profile/Username/following\[/code\]Current .htaccess:\[code\]RewriteEngine OnCheckCaseOnly OnCheckSpelling OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-lRewriteRule ^profile/(.*)$ /blog/profile.php?username=$1&page_type=$2 [QSA,L]\[/code\]Is it possible to rewrite it this way? Or are there a better way?
 
Top