如何更改此网址
http://example.com/tag/[dir]/[dir]/ ...
到
http://example.com/tag/search/[dir]/[dir]/ ...
例如
http://example.com/tag/44/name/445
到
但是
答案 0 :(得分:1)
将此代码放入DOCUMENT_ROOT/.htaccess
文件中:
RewriteEngine On
RewriteRule ^(tag)/((?!search/).+)$ /$1/search/$2 [L,NC,R=301]