Hey I have 1 New Social Network Site VR i want user profile links to be domain.com/rockstar/username Currently its working but automaticaly changes to norma when visit for example Click Here it changes to normal i want it to stay as it is is that possible Regards Sunny
this is wht in my htacess file is RewriteEngine on RewriteRule ^rockstar/([^\.]+)$ /search_results.php?display=profile&name=$1 [r,l] PHP:
Why you are using r? Try the following RewriteEngine onRewriteRule ^rockstar/([^\.]+)$ search_results.php?display=profile&name=$1 [L] Code (markup):