I was attempting to set up a simple 301 redirect from www.iakow.com to www.inallkindsofweather.com
I created an .htaccess file with the below code, and uploaded it to iakow.com
Now, here's the really weird part. When I uploaded it via filezilla from my home computer, everything went fine. When I go to iakow.com from that computer, it redirects me to inallkindsofweather.com as it should.
However, if I go to iakow.com from another computer, it does not. In fact, when I look with filezilla on that other computer, there is no .htaccess file uploaded to iakow.com. Even weirder, when I do upload it from that computer, it gets immediately deleted as soon as it uploads.
What the heck is going on here?
I created an .htaccess file with the below code, and uploaded it to iakow.com
PHP:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^iakow\.com
RewriteRule (.*) http://www.inallkindsofweather.com/$1 [R=301,L]
Now, here's the really weird part. When I uploaded it via filezilla from my home computer, everything went fine. When I go to iakow.com from that computer, it redirects me to inallkindsofweather.com as it should.
However, if I go to iakow.com from another computer, it does not. In fact, when I look with filezilla on that other computer, there is no .htaccess file uploaded to iakow.com. Even weirder, when I do upload it from that computer, it gets immediately deleted as soon as it uploads.
What the heck is going on here?