Forum Moderators: bakedjake
currently it works this
[mysite.com...]
I got a mod rewrite for this which convert url into this
[mysite.com...]
RewriteEngine On
RewriteRule ^([a-z]+)$ user/?P=$1 [NC]
and it works 100% only problem is that i have many directories in my website and say if url is this [mysite.com...] then it also looks for a user.. I want to prevent it..
some one said add this.. in condition.. RewriteCond $1!-d
i did this but still not working.. please suggest me what to do.
Thanks,
Moazam
and redirect all urls containing this www.sitename.com/user/?P=#*$!xx to www.sitename.com/#*$!xx
In my first post this one works fine www.sitename.com/user/?P=#*$!xx but directory condition is not working.
Thank you.