
內容簡介
**總結:**
Redirect.txt 可讓您提供一個簡單的 URL 列表及其目的地,無需創建多餘的文章、無任何限制,只需一個簡單的編輯器。
**問題與答案:**
1. Redirect.txt 提供了哪些功能?
- 路徑重定向
- 完整 URL 重定向
- 文章 ID 重定向
- 正則表達式重定向
- 重定向日誌
- 404 錯誤日誌
2. 在哪裡可以使用 Redirect.txt?
- 在「工具」→「Redirect.txt」中,提供一個 URL 列表。
3. 提供一個 Redirect.txt 的使用示例是什麼?
- 將 /hello 重定向到 /new-hello。
4. 如何支援自定義狀態的重定向?
- 使用類似 `308: # 以下所有重定向將使用 308 重定向狀態。` 的代碼。
5. 如何進行外部重定向?
- 將 /external 重定向到 https://google.com/。
6. 如何進行正則表達式的重定向?
- 當字符串以 ^ 開頭時,例如 `^/news/(.*): /blog/$1`。
外掛標籤
開發者團隊
原文外掛簡介
With Redirect.txt, you can provide a simple list of URLs and their destinations with no post-creation bloat, no limitations, and just a simple editor.
There are many good redirect plugins that have been developed for years and have a strong code base. But we don’t like the idea of creating separate posts/entries for each redirection rule. We simply need to add, remove, and manage redirects in a simple and bulk way.
.htaccess and nginx configs are OK, but we don’t want to edit configs placed somewhere in server directories; we want to open our admin panel and add redirects easily. We also don’t care about wrong config configurations, which will stop your server.
Quick Links
GitHub
Features
Path redirects
Full URL redirects
Post ID redirects
RegEx redirects
Redirect logs
404 logs
Usage
Open Tools → Redirect.txt and provide a list of URLs here. Here is an example of available syntax:
# The links below will automatically use 301 redirects.
/hello: /new-hello
# Support for custom status
# To make 301, 302, 303, 307, or 308 redirects, use a code like this:
308: # All redirections below will use 308 redirect status.
# Support for post ID's
# Redirect from post with ID 1 to post with ID 8:
1: 8
# Support for external redirects:
/external: https://google.com/
# Support for RegEx redirects (automatically detected when the string starts with ^):
^/news/(.*): /blog/$1
# You can use as many comments as you want to categorize your links better.
The same rules without comments:
/hello: /new-hello
308:
1: 8
/external: https://google.com/
^/news/(.*): /blog/$1
