前提・実現したいこと
- Apache/2.4.6 (CentOS)
- PHP 7.2.31 (cli)
- WordPress 5.2.6
ここに質問の内容を詳しく書いてください。
###前提条件・実施したいこと
・(諸事情により、)hoge.com/apps/test というURLを維持したまま、これをトップページにしないといけない
→つまり、hoge.com にアクセスすると hoge.com/apps/test に飛ばしたい
###現状
・DocumentRootは /var/www/html
・Wordpressは /var/www/html/apps/test にインストール
・ .htaccess の状態
-/var/www/html/.htaccess
# BEGIN rlrssslReallySimpleSSL rsssl_version[3.3] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] </IfModule> # END rlrssslReallySimpleSSL # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /apps/test/ RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /apps/test/index.php [L] </IfModule>
・ /var/www/html/apps/test/.htaccess
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /apps/test/ RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /apps/test/index.php [L] </IfModule> # END WordPress
・hoge.com にアクセスするとApacheのテスト画面が表示
・hoge.com/apps/test にアクセスするとWordpressのコンテンツが表示
###ご質問
上記の場合、おそらく、 hoge.com へのアクセスに対して、 hoge.com/apps/test にリダイレクトが必要だと思っているのですが、 .htaccess の設定はどのように設定すれば良いでしょうか??
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/31 06:24 編集