# Redirect
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Redirect permanent /test/ https://isaxxx.com/test-redirect/
# 正規表現が使える
RedirectMatch permanent /test/(.*)$ https://isaxxx.com/test-redirect/
</IfModule>
# Redirect
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Redirect permanent /test/ https://isaxxx.com/test-redirect/
# 正規表現が使える
RedirectMatch permanent /test/(.*)$ https://isaxxx.com/test-redirect/
</IfModule>