web-dev-qa-db-ja.com

codeigniterでhttpをhttpsにリダイレクトする方法

ポイント#1入力した場合:

www.myurl.com/somepage
http://www.myurl.com/somepage
http://myurl.com/somepage
https://myurl.com/somepage

リダイレクトしてもらう

https://www.myurl.com/somepage

ポイント#2

When I type in something like www.myurl.com it is redirecting to https://www.myurl.com/index.php.
Make it so the index.php is not displaying. It should just display https://www.myurl.com

コメントからhtaccess

RewriteEngine On 
RewriteCond %{HTTP_Host} ^myhost\.com$ [NC] 
RewriteRule ^(.*)$ myhost.com/$1 [R=301,L] 
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /index\.php(/[^\ ]*)?\ HTTP/ 
RewriteRule ^index\.php(/(.*))?$ myhost.com/$2 [R=301,L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php/$1 [L] 
15
asiya khan

これで解決策を得たので、htaccessファイルを更新しました。

RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_Host} !^www\. [OR]
RewriteCond %{HTTP_Host} ^myhost\.com$ [NC]
RewriteRule ^ https://www.myhost.com%{REQUEST_URI} [R=301,L,NE]
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /index\.php(/[^\ ]*)?\ HTTP/ 
RewriteRule ^index\.php(/(.*))?$ myhost.com/$2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

今、それは私のためにスムーズに働いた.. :)

5
asiya khan

これが役立つ場合があることを確認してください

構成の変更:-「application/config/config.php」に移動し、フックを有効またはtrueに設定します。

$config['enable_hooks'] = TRUE;

「application/config/hooks.php」にhooks.phpという名前の新しいファイルを作成し、hooks.phpに以下のコードを追加します。

$hook['post_controller_constructor'][] = array(
                                'function' => 'redirect_ssl',
                                'filename' => 'ssl.php',
                                'filepath' => 'hooks'
                                );

アプリケーションディレクトリの下に「hooks」という名前の新しいディレクトリを作成し、「application/hooks/ssl.php」に「ssl.php」という名前の新しいファイルを作成し、「ssl.php」に以下のコードを追加します。

function redirect_ssl() {
    $CI =& get_instance();
    $class = $CI->router->fetch_class();
    $exclude =  array('client');  // add more controller name to exclude ssl.
    if(!in_array($class,$exclude)) {
      // redirecting to ssl.
      $CI->config->config['base_url'] = str_replace('http://', 'https://', $CI->config->config['base_url']);
      if ($_SERVER['SERVER_PORT'] != 443) redirect($CI->uri->uri_string());
    } 
    else {
      // redirecting with no ssl.
      $CI->config->config['base_url'] = str_replace('https://', 'http://', $CI->config->config['base_url']);
      if ($_SERVER['SERVER_PORT'] == 443) redirect($CI->uri->uri_string());
    }
}
20
Preetham Hegde

何よりも試してみましたが、私の場合はうまくいきませんでした。私は以下の解決策を見つけました、私の場合はうまくいきます。それがあなたにも役立つことを願っています。

RewriteEngine on

RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_Host}%{REQUEST_URI} [R=301,L]

RewriteCond $1 !^(index\.php|resources|robots\.txt|public)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
8
Nioya

私にとっては、上記の答えはどれもリダイレクトをあまりにも多く見せていたので機能しませんでしたが、これは魅力のように機能しました。したがって、他の誰かが同様の問題に遭遇した場合は共有したいと思いました:

RewriteEngine on

RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} (sale|success|cancel) [NC]
RewriteRule ^(.*)$ https://%{HTTP_Host}%{REQUEST_URI} [R=301,L]

RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !(static|sale|success|cancel) [NC]
RewriteRule ^(.*)$ http://%{HTTP_Host}%{REQUEST_URI} [R=301,L]

RewriteCond $1 !^(index\.php|resources|robots\.txt|static) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
1
harshal lonare

最初にapplication/config/config.phpファイルに移動して、次の行を探します。

$config['base_url'] = "";

Httpsを使用してURLに設定します。 https://example.com

$config['base_url'] = "https://example.com";

次に、.htaccessファイルを作成し、以下の例でこの行を追加します。

RewriteRule ^(。*)$ https://example.com/ $ 1 [R、L]

<IfModule mod_rewrite.c>

    #Options +FollowSymLinks
    #Options -Indexes
    RewriteEngine on

    # Send request via index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
    RewriteRule ^(.*)$ https://example.com/$1 [R,L]


</IfModule>

はい、確かにこれ

   RewriteEngine On
   RewriteCond %{HTTPS} off [OR] 
   RewriteCond %{HTTP_Host} !^www\. [OR]
   RewriteCond %{HTTP_Host} ^myhost\.com$ [NC]
   RewriteRule ^ https://www.myhost.com%{REQUEST_URI} [R=301,L,NE]
   RewriteCond %{THE_REQUEST} ^[A-Z]+\ /index\.php(/[^\ ]*)?\ HTTP/ 
   RewriteRule ^index\.php(/(.*))?$ myhost.com/$2 [R=301,L]
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php/$1 [L]

動作しますが、少し編集する必要があります。の中に codeiginiterfolder/application/config.phpファイルは、httphttpsに置き換えます。

また、上記のコードのベースURLでは、myhostをホスト名に置き換える必要があります。私のホスト名internetseekho.comので、myhostの代わりにinternetseekhoと書きます。

0
interntseekho

エラーが見つかった場合 "入力ファイルが指定されていません"その後、「?」を追加します最後の行で

RewriteRule ^(。*)$ index.php /?$ 1 [L]

@ asiya khanからの回答

0
hitesh balyan

SSLはCloudFlare CDNからのものであるため、上記のソリューションは機能しません。

次のSSL検出コード(@Preetham Hegdeソリューションに基づくSSL.php内)が機能します。

$isSecure = false;
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
    $isSecure = true;
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https' || !empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] == 'on') {
    $isSecure = true;
}
$REQUEST_PROTOCOL = $isSecure ? 'https' : 'http';


if ($REQUEST_PROTOCOL=="http")
{
    $redirect = 'https://' . $_SERVER['HTTP_Host'] . $_SERVER['REQUEST_URI'];
    header('HTTP/1.1 301 Moved Permanently');
    header('Location: ' . $redirect);
    exit();
}
0
James