I want use 301 redirect code for my web site. Can any body help me.How, I use .htaccess file for 301 redirect.
If you are using Cpanel, its very easy. Go to Redirects and add your link over there. in this case its not needed that you manually change .htaccess.
I am using cute FTP 8 professional. I've try all code for 301 redirect. But, I'm not success. So, Please give me any code which is any body use for his web site.
I want to redirect this web site http://www.topseo4indiavg.com/ to http://starwebmakers.com/. So, Please provide me correct 301 or 302 redirect code.
Generally .htaccess redirect is used on linux servers having apache. This code may help you for redirection: Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] Replace www.newdomain.com with the domain name you want to use. The .htaccess file needs to be placed in the root directory of your old website.
Open your notepad and place given below code for 301 redirection. Change your domain name and save file as .htaccess. Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]