私は2つのウェブサイトをホストしたい共有Linuxホスティングを持っています。 /public_html/
で
私はexample.com
を主催しており、/public_html/example2/
に私がexample2.comサブフォルダに2番目のWordPressインスタンスをインストールする
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
#Custom Error Pages
ErrorDocument 403 http://www.example2.com/error-403/
I WAのexample2.com
example.comの.htaccess
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
#Custom Error Pages
ErrorDocument 403 https://www.example.com/error-403/
.htaccess
を開催しています(はサブでSSLとそれを持っていないhttp://www.example2.com/としてhttps://www.example.com/(はそれがメインディレクトリでのSSLを持っている)
- example.comとは別にウェブサイトの両方にアクセスするには、NTディレクトリ)
は注意してください:私はWordPressの一般設定で設定site_url
とhome_url
、与えられたURLの上を持っています。私はそれがそうthis answerを読んだ後https://www.example.com/example2/
に私を取っているexample2.com
にアクセスすると、私が直面してる
問題は
ある、と私は
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# if request is not for the /example2/
RewriteCond %{REQUEST_URI} !^/example2/ [NC]
# otherwise forward it to index.php
RewriteRule . /index.php [L]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
</IfModule>
# END WordPress
にexample.com
の私の.htaccess
を変更しました だからexample2.com
にアクセスできますが、パーマリンクは利用できませんそれをリセットしようとすると、私のexample2 .haccess
ファイルの内容が削除され、https://www.example.com/example2/
にリダイレクトされます。
誰でも私をここで助けることができますか?
私も運がないとこれを試しましたConfiguring WordPress .htaccess to view subfolders。
答えるためのおかげで、それは今では 'https://www.example.comにリダイレクトさだって、働いていないしているようです/ example2/' –