我正在尝试重定向网站的amp版本,但我需要同时更改两件事,但不能
从https://example.com/dir-1/dir-2/file.htm到https://example.com/amp/dir-1/dir-2/file.shtm
所以我需要更改扩展名和目录
我正在这样做
RewriteCond %{HTTP_USER_AGENT} (android|blackberry|googlebot\-mobile|iemobile|iphone|ipod|palmos|webos) [NC]
RewriteRule ([^/]*)\.htm$ http://www.example.com/amp/$1.shtm [L,R=302]
但它只是更改了扩展名
从https://example.com/dir-1/dir-2/file.htm到https://example.com/amp/file.shtm 没有子目录
你能帮忙吗?