Rewrite %{QUERY_STRING}用法
伺服器變數%{QUERY_STRING}可以獲取查詢字串內容。
連結如下:
[Shell] 純文字檢視 複製程式碼http://www.softwhy.com/forum.php?mod=viewthread&tid=1860
上面連結中mod=viewthread&tid=1860就是查詢字串部分。
假如要將forum.php?mod=viewthread&tid=1860重定向到article-2094-1.html,可以使用如下程式碼:
[Shell] 純文字檢視 複製程式碼RewriteCond %{QUERY_STRING} ^(.*)tid=1860$ [NC] RewriteRule ^forum.php$ article-2094-1.html? [R=301]
程式碼分析如下:
(1).%{QUERY_STRING}可以獲取查詢字串,也就是mod=viewthread&tid=1860。
(2).^(.*)tid=1860$用來判斷當前URL的tid是否是1860。
(3).最後重定向到article-2094-1.html。
特別說明:rticle-2094-1.html問號不能省略,具體參閱RewriteCond與RewriteRule詳解一章節。
相關文章
- Rewrite %{HTTP_HOST}用法HTTP
- Rewrite %{REQUEST_FILENAME}用法
- Rewrite %{HTTP_USER_AGENT}用法HTTP
- nginx rewriteNginx
- Nginx RewriteNginx
- 07.full text query_string查詢
- Apache Rewrite詳解Apache
- Clang -rewrite-objcOBJ
- Nginx rewrite 詳解Nginx
- mod_rewrite模組
- nginx thinkphp rewrite配置項NginxPHP
- nginx rewrite語法格式Nginx
- nginx高階篇rewriteNginx
- MySQL Rewriter Query Rewrite PluginMySqlPlugin
- Nginx 實現 Rewrite 跳轉Nginx
- nginx location匹配及rewrite規則Nginx
- Nginx location匹配及Rewrite重寫Nginx
- ElasticSearch 中 match、match_phrase、query_string 和 term 的區別Elasticsearch
- Nginx Rewrite實際應用配置解析Nginx
- 為 Charles 新增代理頁面按鈕(Rewrite)
- Nginx 學習總結(4)—— Rewrite 模組Nginx
- NGINX使用rewrite實現http 跳轉 httpsNginxHTTP
- nginx學習-ngx_http_rewrite_module模組NginxHTTP
- rewrite實現目錄之間的跳轉
- nginx配置location總結及rewrite規則寫法Nginx
- apisix~14在自定義外掛中呼叫proxy_rewriteAPI
- 一篇文章說透Nginx的rewrite模組Nginx
- mitmproxy 代理工具介紹:rewrite和map local實現MIT
- ubuntu15 安裝nginx 報錯:the HTTP rewrite module requires the PCRE library.UbuntuNginxHTTPUI
- Qdrant用法;Qdrant在langchain裡的用法LangChain
- Yii2-application用法 (Yii::$app用法)APP
- __kindof用法
- requestAnimationFrame用法requestAnimationFrame
- JavaScript this用法JavaScript
- SVN用法
- static用法
- getComputedStyle() 用法
- JSONP 用法JSON