を使用して、サブディレクトリをサブドメインにリダイレクトしたいと考えてい.htaccess
ます。私の現在のコード:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_HOST} ^(www.)?sub.example.com$
RewriteRule ^(/)?$ subdirectory [L]
</IfModule>
このコードは にリダイレクトされsub.example.com/subdirectory
ます。/subdirectory
新しい URL から削除するにはどうすればよいですか?