hi, Google search engine is still cached my link with - youretirementstrategies.co.uk so on the basis how to premenant redirect my website on www.youretirementstrategies.co.uk Please explain how to do the redirection of the domain name with tips.
hi, Also please explain how to redirect with inner pages for this website - www.youretirementstrategies.co.uk
You Should Need Follow This Code At Your Head of Website : <meta http-equiv="refresh" content="5; URL=http://my new web address"> And into the BODY of your document put "my old web address" has moved to "my new web address" If your browser does not automatically redirect you in 5 seconds, click <a href="http://my new web address">here</a> to go to the new site. Cheers !
The REAL way to do a redirect (301permanent) on a Unix server is using .htaccess like this: RewriteEngine on Options +Indexes RewriteCond %{HTTP_HOST} ^youretirementstrategies\.co\.uk$ [NC] RewriteRule ^(.*)$ http://www.youretirementstrategies.co.uk/$1 [R=301,L] This will redirect all pages to www.
You need to do 301 (Permanent) redirection. For tips on how to implement it in different programming languages, refer : How to 301 Redirect a Web Page - 301 Redirect Methods
This is the code I use in my own website. I just inserted at the end of my .htaccess RewriteCond %{HTTP_HOST} ^spectraelite.com RewriteRule (.*) http://www.spectraelite.com/$1 [R=301,L] I will recommend you talk with you hosting service provider. A lot of the technicians can install this on your website for you. That's what I did on my first website.
Check to see you have a .htaccess file (I hope you're running Apache!). If you do this via FTP, make sure "show hidden files" is turned on. If you have one, enter the following code (after replacing the placeholders with their real values); if not, create a new text file and save it as .htaccess -- NOT .htaccess.text or anything else. Just PERIOD HTACCESS RewriteEngine on # Redirects non-www version to www. version RewriteCond %{HTTP_HOST} ^yourdomain\.tld [NC] RewriteRule .? http://www.yourdomain.tld{REQUEST_URI} [R=301,L] # Redirects /index.ext to / RewriteRule ^(.+/)index\.ext?$ http://www.yourdomain.tld/$1 [R=301,L] Code (markup): yourdomain tld and ext are the placeholders. yourdomain would be like digitalpoint while the TLD would be the .com -- the .ext is the file extension ( .html or .php for instance). Note this will work on both Apache 1.x and Apache 2.
There is more than one way to a 301 - just do a Google. I use a snippet of VB code to 301 individual pages on Windows servers for greater control. The meta refresh is a very, very bad idea. 301 is Google safe and will flow PR
NO! A 301 redirect is the official way to let servers know a page has been permanently moved. Google respects this and will flow page rank, authority link juice etc through a 301. A 303 has specialized uses (especially when using some cgi applications) and should NOT be used for SEO purposes.