我需要從以下重定向:
http://example.com/*/this/any.html
http://example.com/*/*/this/any.html
http://example.com/*/*/*/this/any.html
到:
http://example.com/this/any.html
uj5u.com熱心網友回復:
使用根.htaccess檔案頂部的 mod_rewrite 嘗試類似以下內容:
RewriteEngine On
RewriteRule ^(?:[^/] /){1,3}(this/[\w-] \.html)$ /$1 [R=302,L]
any.html-的檔案名前綴(any)被允許包含下列字符:a-z,A-Z,0-9,_(下劃線)和-(連字符)
轉載請註明出處,本文鏈接:https://www.uj5u.com/gongcheng/400855.html
