Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、(www.domain.com ではなく) domain.comのみをサブフォルダーにリダイレクトしたいと考えています。
私は試した:
RewriteCond %{HTTP_HOST} ^?YourDomain.com$ RewriteRule ^(/)?$ page [L]
しかし、内部サーバーエラーが発生しました
500 内部サーバー エラーは、不適切な式が原因で発生します。
# what's this? -----------v RewriteCond %{HTTP_HOST} ^?YourDomain.com$
その疑問符で何をしようとしているのかわかりません。しかし、おそらく次のようなものが必要です。
RewriteCond %{HTTP_HOST} ^YourDomain.com$ [NC]
は[NC]、大文字と小文字を区別しません。
[NC]