Four steps, in order, for every request that asks for a language other than your own.
Your domain points at the translation proxy instead of straight at your server. A request for /es/pricing arrives at the proxy, not at your origin.
The proxy strips the language prefix and requests /pricing from your own server, exactly as a browser would. Your site is unchanged and does not know the difference.
可見文字、連結標題、表單標籤、替代文字,以及 Meta 標題與描述都會從 HTML 中提取,並結合完整的頁面上下文進行翻譯,確保單字翻譯時能符合周圍句子的語境。
代理伺服器將翻譯內容寫回相同的 HTML 並回傳。結果會快取在邊緣節點,因此下一位訪客請求該語言的頁面時,無需再次進行翻譯即可直接讀取。
Every architecture trades something away. These are the trades a proxy makes, including ours.
您的程式碼或內容管理系統中無需安裝任何內容。這正是代理伺服器的存在意義:即使是沒有工程時間的團隊,或是不想更動現有技術棧的團隊,也能推出多語言網站。
翻譯發生在頁面到達瀏覽器之前,因此爬蟲接收到的是目標語言的完整渲染頁面,而非事後才由腳本重寫的英文頁面。
Translated pages are served from your own domain under a path such as /es/ or /ja-jp/, so each language inherits the authority the domain has already earned.
A page published this morning is translated the first time somebody requests it. There is no export, no re-import, and no build step to re-run.
完全代理模式意味著您的網域會解析到我們。這是一種真正的依賴關係,也是我們同時提供兩種較輕量模式的原因。若您尚未準備好,混合模式可在您的 DNS 保持不變的情況下,為爬蟲提供伺服器端渲染的翻譯。
代理伺服器會讀取 HTML,而繪製在 JPEG 中的文字並非 HTML。替代文字(Alt text)會自動翻譯。嵌入在圖片本身的文字,僅針對您選擇加入的圖片進行翻譯,翻譯後的圖片會針對該語言進行快取。
Pages a crawler can never reach still translate for the visitor who is signed in, but they cannot be pre-translated by crawling alone. Authenticated pages are discovered separately.
代理伺服器會持續翻譯,因此採持續計費模式。我們不會對您已付費的句子重複計費:翻譯過的文字會永久儲存,而非每個月重新計費。
Most translation services give you one install mode and expect you to live with its trade-off. Proxylang ships three, and you can move between them without redoing the setup.
| Mode | Available on | Your DNS | Search engines |
|---|---|---|---|
| Script tag One line of JavaScript translates the page in the visitor’s browser. Fastest to install and the right choice when you want the language switcher working today. It is not a proxy, and it does not earn you search traffic on its own. | Every plan, including free | Unchanged | See your original language |
| Hybrid Visitors are translated in the browser; search engine crawlers are served a translated page rendered on the server. You get the indexable pages a proxy gives you without moving your DNS. Crawler pages are translated within a per-page token budget. | Start plan and up | Unchanged | Get server-rendered translated HTML |
| Full reverse proxy Every request for a translated URL is rendered on the server for everyone. This is the mode this page is about, and the one that behaves identically for a visitor, a crawler and an AI assistant. | Pro plan and up | Points at Proxylang | Get the same page every visitor gets |
A website translation proxy is a server that sits between your visitors and your website. When somebody requests a translated URL, the proxy fetches the original page from your server, translates the text inside the HTML, and returns the translated page. Your site is never modified, and you do not install anything in it. The translated pages live on your own domain, usually under a language path such as /es/ or /ja-jp/.