これを試して:
www.mysite.com/exception.html にリダイレクト -> mysite.com/exception.html (オプション)
www.mysite.com/exception.html を mysite.com/exception.html にリダイレクトしたい場合にのみ、この RewriteRule を追加してください。
mysite.com から www.mysite.com へのリダイレクトの例外として exception.html のみが必要な場合は、このルールは必要ありません。
# Redirects www.mysite.com/exception.html to mysite.com/exception.html
RewriteCond %{HTTP_HOST} ^www\.(.+)
RewriteRule ^exception.html$ http://%1/exception.html [R]
mysite.com にリダイレクト -> www.mysite.com
# Redirects mysite.com to www.mysite.com. We must add a condition to avoid an infinite redirect loop with exception.html
RewriteCond %{HTTP_HOST} ^(mysite\.com)
RewriteCond %{REQUEST_URI} !^exception.html$
RewriteRule (.*) http://www.%1/$1 [R=301,L]