.htaccessファイルを使用して特定のURLリクエストを別のURLにリダイレクトするには、RewriteEngineとRewriteRuleディレクティブを使用します。
以下は "hoge" へのアクセスを https://hoge.net/download/data/hoge.csv にリダイレクトするための .htaccess の内容です:
RewriteEngine On RewriteRule ^hoge$ https://hoge.net/download/data/hoge.csv