0
我想這個URL重定向:.htaccess RedirectMatch可以從url中刪除部分內容嗎?
domain.asd/category/node123/attachment/file123
這一個:
domain.asd/category/node123
通過除去末端的attachment/fn1aa
。
只有node123
和file123
是動態的。
下面的代碼正在工作,但它是有效的,安全的和資源友好的?
RedirectMatch permanent category(.*)attachment /category/$1
任何建議,歡迎。謝謝。