644, file permissions are really not the problem. I set them both to 777 and i still get the error. it's just a matter of either one being able to load.
644, file permissions are really not the problem. I set them both to 777 and i still get the error. it's just a matter of either one being able to load.
I was confirming the permissions were correct and not a problem.
Now add this to your .htaccess file.
AddType text/x-component .htc
thanks for the reply website rob,
I added that line of code to my .htaccess file but it didn't seem to do anything. From what i understand this only works on apache servers, but i beleive i am on one...
I think i may have to contact my server admin to make the server serve .htc files with the MIME-type:
text/x-component.
Hi,
In trying to redirect URL from liathe.com to www.liathe.com, I found 2 similar types of codes (for .htaccess file):
andCode:RewriteCond %{HTTP_HOST} ^sensuoushaven\.com [NC] RewriteRule (.*) http://www.sensuoushaven.com/$1 [R=301,L]
May I know if they can achieve the same objective? Thanks.Code:RewriteCond %{HTTP_HOST} !^www\.sensuoushaven\.com [NC] RewriteRule ^(.*)$ http://www.sensuoushaven.com/$1 [L,R=301]