hi all, is there anyone here who knows how to change some urls as i want? i moved my documents from "/forums" folder to the root and when i search something on google i still see documents in "forums" so i gotta change something on .htaccess. what can i do redirect some requirements from www.xx.com/forums/anyurls to www.xx.com/anyurls ?
RewriteEngine on RewriteCond %{HTTP_HOST} ^xx.com$ [OR] RewriteCond %{HTTP_HOST} ^www.xx.com$ RewriteRule ^forums/?(.*)$ "http\:\/\/www\.xx\.com\/$1" [R=301,L]