次の .htaccess コードを使用しています。
ルートフォルダーの .htaccess
#for redirecting www to non-www
RewriteCond %{HTTP_HOST} ^www\.(.*)
RewriteRule (.*) http://%1/$1 [R=301,L]
#temporary redirect root to dir/
RedirectMatch ^/$ /dir/
dir フォルダー内の .htaccess
RewriteEngine on
#for changing index file to a custom one
DirectoryIndex abc.php?tag=ho
#for simple url
RewriteRule ^what/([^/]*)\.html$ /dir/abc.php?tag=$1 [L]
現在のコードでは、www.domain.com は domain.com にリダイレクトされますが、www.domain.com/dir/ はリダイレクトされません。
次の 2 点を修正する必要があります。
- www を非 wwww にリダイレクトする
- domain.com を domain.com/dir/ にリダイレクトします
よろしくお願いします。