ローカルホストとリモートホストの両方がルートをサブディレクトリにリダイレクトする方法を教えてください。htaccessは2つのホストをサブディレクトリにリダイレクトする方法
ローカルホスト:domain.localhost
リモートホスト:domain.com
サブディレクトリ:サブディレクトリ
domain.localhost -> domain.localhost/subdir/<br>
domain.localhost/ -> domain.localhost/subdir/<br>
domain.com-> domain.com/subdir/<br>
www.domain.com -> www.domain.com/subdir/<br>
Options +FollowSymLinks
DirectoryIndex questions.php
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.localhost$
RewriteRule ^(.*)$ http://domain\.localhost/subdir/$1 [R=301,L]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) http://www.domain.com/subdir/ [R=301,L]
私はすべてのソリューションを試しましたが、残念ながら期待どおりに機能しませんでした。すべてのあなたの答えのおかげでみんな。 – Codex73