GWT fetch showing redirect to XMLPRC.PHP only on mobile?
-
i fetched a page that i was updating today only to see that response came back as redirected so i had a look at where it was redirecting it said > https://quickmove.com.au/xmlprc.php
Never seen that before when i was fetching, the weird thing it only gave the redirect response when i was fetching from mobile . desktop seemed fine.
I did a google search on xmlprc.php and it started showing alot of attack & hacking results, so immediately tried to find a solution and found 2
1. install a plugin > disable xmlprc > i did that i installed > Disable XML-RPC Pingback
2. Block access via httacces to xmlprc i did that i used the code below# Block WordPress xmlrpc.php requests
<Files xmlrpc.php>
order deny,allow
deny from all
</Files>So after that i did a fetch on GWT and it came back as redirected again only on mobile, but when i had a look it said it was being redirected to the actual url but ending with /
So now i am confused, and not 100% sure if i was being attacked or not, if i solved the problem , or if i have another issue please help me
These are the responses from Fetch
1st response prior to making any changes
HTTP/1.1 301 Moved Permanently
Date: Sat, 02 May 2015 23:22:13 GMT
Server: Apache
X-Pingback: https://quickmove.com.au/xmlrpc.php
X-Powered-By: W3 Total Cache/0.9.4.1
Set-Cookie: wfvt_3657569171=55455c25ba77a; expires=Sat, 02-May-2015 23:52:13 GMT; path=/; httponly
Vary: Accept-Encoding,User-Agent
Location: https://quickmove.com.au/furniture-removals-truck-and-man-hire/
Cache-Control: max-age=3600
Expires: Sun, 03 May 2015 00:22:13 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 0
Keep-Alive: timeout=5, max=75
Connection: Keep-Alive2nd response from fetch after i made the changes
HTTP/1.1 301 Moved Permanently
Date: Sat, 02 May 2015 23:44:50 GMT
Server: Apache
X-Powered-By: W3 Total Cache/0.9.4.1
Set-Cookie: wfvt_3657569171=554561736b586; expires=Sun, 03-May-2015 00:14:51 GMT; path=/; httponly
Vary: Accept-Encoding,User-Agent
Location: https://quickmove.com.au/furniture-removals-truck-and-man-hire/
Cache-Control: max-age=3600
Expires: Sun, 03 May 2015 00:44:50 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 0
Keep-Alive: timeout=5, max=74
Connection: Keep-AlivePlease someone help me understand whats happening?
- The topic ‘GWT fetch showing redirect to XMLPRC.PHP only on mobile?’ is closed to new replies.