301 Redirect?
301 Redirect?
Out of context: Reply #2
- Started
- Last post
- 10 Responses
- hubb7designs0
So I found that I need to edit the .htacces file on my GoDaddy server in order to complete the 301 redirect. But when I edit the .htaccess file as follows:
AuthType Basic
AuthName "User Backups"
AuthUserFile /home/content/P/T/3/html/stats...
require valid-user
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^pubtel.net [NC]
RewriteRule ^(.*)$ http://www.pubtel.net/$1 [L,R=301]And then I test the redirect on this site:
http://www.stepforth.com/resourc…I still get a result of:
HTTP/1.1 200 OKI believe that I'm suppose to be getting:
HTTP Status Code: HTTP/1.1 301 Moved PermanentlyAnything that I'm missing here?