I have the following code in my htaccess
that makes the user redirection if he access the site without www, works perfectly if you enter the direct domain without www he will redirect, however from facebook he does not redirect.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^bluanime.com [NC]
RewriteRule ^(.*)$ http://www.bluanime.com/$1 [L,R=301]
</IfModule>
As you type bluanime.com
in the browser address bar, it is redirected to the www.bluanime.com
version, but in facebook if I put in the description only bluanime.com
and the person click it it is not redirected, the What could be causing this?
This is the link that should make automatic redirection on facebook Link to the redirect , so far in the stack it is not redirected to the www version