GET host-food.ru HTTP 2001.2 s20.7 KB$0.000079 captured Aug 7, 2026
host-food.ru, as data
One API turns any host-food.ru page into markdown, structured JSON, its link graph or a screenshot, and crawls the whole site the same way. The panel shows the real response we captured.
- Render mode
- Plain HTTP, no browser needed
- Response
- HTTP 200 in 1.2 s
- Page size
- 20.7 KB of markdown, 154 lines
- Fields
- Recipe Name, Ingredients, Cook Time, Servings
- Captured
- Aug 7, 2026
Free balance on signup, no card. This host-food.ru page cost $0.000079 to fetch.
Индексный файл или файл-индекс — это тот файл, который открывается по умолчанию при обращении пользователя через веб к каталогу, а не к конкретному файлу. Например, ваш посетитель запросит адрес http://ваш_домен/price/, где price — название каталога. Индексный файл это тот файл, который будет показан пользователю при обращении к каталогу без указании имени конкретного файла в нем.Redirect [status] URL-from URL-toRedirect 307 / http://freebsd.org/Допустим, делаем переадресацию на перемещённый контент, при обращении к doc/index.html или index.html. Где doc - папка сайта которая находится в той же директории, что и сам файл **.htaccess**. Сам контент допустим перенесли на сайт microsoftRedirect 301 doc/index.html http://www.microsoft.com/rus/windows/default.mspxRedirect 301 index.html http://www.microsoft.com/rus/windows/default.mspxRedirect 303 http://www.microsoft.com/ http://www.freebsd.org/Чуть более сложный пример. Нам необходимо перенаправить всех посетителей пришедших на наш сайт без преффикса www, т.е. на host-food.ru. Ввиду массовой интернет-безграмотности, многие делают наоборот, но по уму, сайт должен находиться на субдомене www. Итак, перенаправляем всех кто пришёл по имени host-food.ru на правильное - www.host-food.ru:# add www to domain nameRewriteCond %{HTTP_HOST} ^host-food\.ruRewriteRule ^(.*)$ https://www.host-food.ru/$1 [R=permanent,L]# redirect for hostfood.ruRewriteCond %{HTTP_HOST} ^hostfood\.ruRewriteCond %{HTTP_HOST} www\.hostfood\.ruСитуация: пользователь обратился к каталогу http://www.ваш_домен.ru/price/. При таком запросе первым откроется и будет показан индексный файл. Если вы хотите переопределить индексный файл и сделать так, чтобы первым открывался не index.htm, а, например, файл myindex.php, то сделать это можно поместив в файл .htaccess, в соответствующем каталоге, следующую инструкцию:DirectoryIndex myindex.php What Spider does on host-food.ru
Same key, five endpoints. The numbers under a cell were measured on this page.
Page to markdown
Clean text for RAG and LLM context, boilerplate removed. The lane that runs without a key.
1.2 s · $0.000079Page to JSON
Spider reads the page and names the fields. Pass your own schema when you need exact keys.
Rendered capture
Real Chromium, full-page PNG. The same call also returns the rendered HTML.
The call behind the panel
This request produced the response above. Paste it with your key and you get the same bytes.
curl -X POST https://api.spider.cloud/scrape \
-H "Authorization: Bearer $SPIDER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://www.host-food.ru/faq/technical.questions/apache/examples.of.use.htaccess/", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://www.host-food.ru/faq/technical.questions/apache/examples.of.use.htaccess/", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://www.host-food.ru/faq/technical.questions/apache/examples.of.use.htaccess/", {
return_format: "markdown",
});
console.log(page.content); What host-food.ru costs
Multiplied from the measured 20.7 KB page. Estimates round to the cent.
1 GB of transfer costs $1, plus $0.001 per CPU minute, and failed requests cost $0. Crawling daily? The Unlimited plan is a flat monthly rate.
Point this at the rest of host-food.ru.
The capture above took 1.2 s and cost $0.000079. The same call takes any URL on host-food.ru.