Hi, i need help with htaccess.. I want to redirect visitors from old url to new url. old url is like: http://www.yoursite.com/site/anything-blog-title/ i want to redirect it to: http://www.yoursite.com/anything-blog-title/ Please help me out.. Thanks in advance..
Try This: Options +FollowSymLinks Options +Indexes RewriteEngine On RewriteRule ^site/(.+)$ /$1 [QSA,L] Code (markup): Mod-Rewrite must be enabled. Also, this should be on the same domain, not two seperate sites. Change "site" to where the blog is installed, if necessary. Place this in the .htaccess in the root / public_html of your site. Please +rep if this works. BMR777
Try this website, it is a code generator for what you want to do. http://www.webmaster-toolkit.com/mod_rewrite-rewriterule-generator.shtml