# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/4zqamnq
Nginx 重定向方法**
Nginx 重定向配置是一個功能強大且靈活的工具,可以根據具體需求實現各種重定向規則。以下是對 Nginx 請求重定向配置方法的詳細解析:基本概念 請求重定向是指當客戶端向服務器發送一個請求時,服務器根據一定的規則將客戶端的請求引導到另外一個 URL 的過程。在 Nginx 中,通過rewrite和return指令等可以實現請求重定向。這在網站重構、域名變更、URL 美化等場景中非常有用。 ⌘ Read more