Hello,
I hope I may ask some mod rewrite realted help.
I would like to make my blog URLs of the type:
http://www.myblog.com/blog/?author_name=USER_NAME_HERE/
into easier to remember and easier to type URLs such as:
http://www.myblog.com/blog/USER_NAME_HERE/
so that when a visitor types in the latter he is redirected to the former.
I have tried this but it doesn't work:
Redirect /blog/(.)$ http://www.myblog.com/blog/?author_name=%1 [R=301,L]
and this:
RewriteRule /blog/(.)ยป /blog/?author_name=$1