I have redirection rule written in .htaccess both on local site and live site. Both are same. The pages of site are cached using cachelight, I have a file named cache.php uses curl to call which cachedelete.php file which then deletes cache of a page i want to delete.
The problem is due to redirection rule it seems that the page cachedelete.php is not been called. Due to POST method in CURL i was getting "Request Entity Too Large" on server but not on local. I added the post field along with the curl POST enabled , Then i got is "Moved Permanently", but the file cachedelete.php is not yet reached. I tried using file_get_contents("cachedelete.php") . The file got executed on Local , but not on server .
I also tried using RewriteCond %{HTTP_HOST} !^/clearCache/cachedelete.php$1 in htaccess locally , but independent to this condition my file_get_content("cachedelete.php") works on local. The file_get_content only fails on server . What can be the issue . Please Help . Thanks