.htaccess - Redirection of profile pages in codeignitor using htaccess -


i have user profile pages this

www.mysite.com/profile/sohailanwarpk , htaccess rule

rewriterule  ^profile/([_0-9a-za-z-]+)$  /user/profile/ 

sohailanwarpk user name

i want make links this

www.mysite.com/sohailanwarpk  

but problem facing have other sites pages too..

www.mysite.com/page1  www.mysite.com/page2 

so can differentiate or whats best way this

its better make routes.php

like

    $route['^(?!page1|page2).*'] = "user/profile"; 

Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

asp.net mvc - Implementing normal user/pass, Twitter & Facebook auth -