0

私はこれを検索してきましたが、答えを見つけることができませんでした。ここで何かを見逃したかもしれません。基本的に、1 つの CI インストールの下に 2 つのアプリケーションがあります。各アプリには独自のサブドメインがあります。たとえば、http://foo.example.com/どちらが にリダイレクトされhttp://example.com/foohttp://bar.example.com/どちらが にリダイレクトされhttp://example.com/barます。それhttp://example.com/自体がある種のランディングページになります。

リダイレクト部分は正常に機能しています。しかし、URL が からhttp://foo.example.com/に変更され続けるのでhttp://example.com/foo、これを防ぎたいと思います。[L] フラグの代わりに [P] を使用する解決策を読みましたが、プロキシを有効にする必要があります。

プロキシを有効にする以外に、これを行うための他のオプションはありますか?

現在、私のhtaccessファイルは次のとおりです。

RewriteEngine On
RewriteBase /

#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.

RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]

#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

# The line for subdomain
RewriteCond %{HTTP_HOST} ^(.*)\.example\.com
RewriteRule ^(.*)$ http://example.com/%1/$1 [L,NC,QSA]

# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin

ErrorDocument 404 /index.php

返信ありがとうございます。

4

0 に答える 0