I am using wordpress and have a rewrite rule working normal before when I share a post to facebook, however i found that facebook now captures only my homepage(http://www.example.com) no matter whatever the post i try to share.
So I checked the HTTP header and it returns 302 to my homepage. Actually it works normal when I browse the site with any browsers. Plsss kindly help
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>