SELECT 
  COUNT(*) 
FROM 
  cscart_storefronts AS storefronts 
WHERE 
  1 = 1 
  AND (
    storefronts.url = 'cs-cart.web-apice.work' 
    OR storefronts.url = 'www.cs-cart.web-apice.work' 
    OR storefronts.url LIKE 'www_.cs-cart.web-apice.work' 
    OR storefronts.url LIKE 'cs-cart.web-apice.work/%' 
    OR storefronts.url LIKE 'www.cs-cart.web-apice.work/%' 
    OR storefronts.url LIKE 'www_.cs-cart.web-apice.work/%'
  )

Query time 0.00018

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "storefronts",
      "access_type": "ALL",
      "rows": 2,
      "filtered": 100,
      "attached_condition": "((`_testcscart`.`storefronts`.`url` = 'cs-cart.web-apice.work') or (`_testcscart`.`storefronts`.`url` = 'www.cs-cart.web-apice.work') or (`_testcscart`.`storefronts`.`url` like 'www_.cs-cart.web-apice.work') or (`_testcscart`.`storefronts`.`url` like 'cs-cart.web-apice.work/%') or (`_testcscart`.`storefronts`.`url` like 'www.cs-cart.web-apice.work/%') or (`_testcscart`.`storefronts`.`url` like 'www_.cs-cart.web-apice.work/%'))"
    }
  }
}

Result

COUNT(*)
2