12/09/20 21:51:52.34 M55DUi1q
>>465
「ファイルは"*.html"」という条件追加していいなら
RewriteCond %{REQUEST_URI} ^/hogehoge/.*/a/[^/]+\.html$
RewriteRule ^/hogehoge/(.+)/a/(.+)\.html$ URLリンク(a.example.com) [L]
RewriteRule ^/hogehoge/a/(.+)\.html$ URLリンク(a.example.com) [L]
RewriteCond %{REQUEST_URI} ^/hogehoge/.*/b/[^/]+\.html$
RewriteRule ^/hogehoge/(.+)/b/(.+)\.html$ URLリンク(x.example.com) [L]
RewriteRule ^/hogehoge/b/(.+)\.html$ URLリンク(x.example.com) [L]
RewriteCond %{REQUEST_URI} ^/hogehoge/.*\.html
RewriteRule ^/hogehoge/(.*).html$ URLリンク(example.com) [L]