.htaccessで次のコードを使用すると、どのフォルダーを作成できますか?ウェブサイト作成サイトを構築しようとしていますが、サブドメインの作成部分で困惑しています。コードは次のとおりです。
#RewriteCond %{HTTP_HOST} !^www [NC]
#RewriteCond %{HTTP_HOST} ^(.+)\.mydomain\.com$ [NC]
#RewriteCond %{REQUEST_URI} !^/subdomains
#RewriteRule ^(.*) %{HTTP_HOST}$1
#RewriteRule ^(.*)\.mydomain\.com(.*) /subdomains/$1/$2
#RewriteCond %{HTTP_HOST} !^www [NC]
#RewriteCond %{HTTP_HOST} ^(.+)\.mydomain\.com$ [NC]
#RewriteCond %{REQUEST_URI} ^/subdomains
#RewriteRule ^(.*) %{HTTP_HOST}$1
#RewriteRule user/a.x /subdomains/index.php?a.x
#--------------
Options +FollowSymLinks
RewriteEngine on
RewriteRule user/(.*)/(.*) showpage.php?user=$1&page=$2 [nc]
それで、それはユーザーフォルダでしょうか?サブドメインフォルダ?混乱している :(