我想检查特定网站是否存在移动版本。据我了解,我们无法确定每个网站是否都有位于http://m.example.com/的移动版本,因此我正在通过 CURL() 请求进行测试。这是我的做法:
* I send mobile browser headers in curl request, this returns contents of
the returning URL.
* If it has a mobile version, then it would return contents of a mobile version site.
* I then check if the content includes @media keyword, if it exists then I assume it has a mobile version.
问题是,如果它的 css 是从外部加载的,那么我将不得不进一步向 CSS 文件发送 CURL() 请求,这会使它变得更慢。我的问题有什么具体的解决方案吗?或者我可以进一步推动这个过程吗?
任何帮助,将不胜感激。谢谢。