Point n ° 1 Si je tape:
www.myurl.com/somepage
http://www.myurl.com/somepage
http://myurl.com/somepage
https://myurl.com/somepage
le rediriger vers
https://www.myurl.com/somepage
Point n ° 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
Commenter 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]
Maintenant, j'ai une solution, J'ai mis à jour mon fichier 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]
Maintenant, cela a fonctionné pour moi en douceur .. :)
S'il vous plaît vérifier cela peut aider
Modifications de la configuration: - Allez à «application/config/config.php» et activez ou définissez les points d'ancrage sur true.
$config['enable_hooks'] = TRUE;
créez un nouveau fichier nommé hooks.php dans “application/config/hooks.php” et ajoutez le code ci-dessous dans hooks.php: -
$hook['post_controller_constructor'][] = array(
'function' => 'redirect_ssl',
'filename' => 'ssl.php',
'filepath' => 'hooks'
);
Créez maintenant un nouveau répertoire nommé “hooks” sous le répertoire application, puis créez le nouveau fichier “ssl.php” dans “application/hooks/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());
}
}
J'ai essayé avant tout ceux-ci mais ils ne fonctionnaient pas correctement dans mon cas. J'ai trouvé la solution ci-dessous, cela fonctionne dans mon cas. J'espère que cela vous sera utile également.
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]
Tout d’abord, allez dans le fichier application/config/config.php et recherchez cette ligne:
$config['base_url'] = "";
Définissez-le sur votre URL avec le https, par exemple. https://example.com
$config['base_url'] = "https://example.com";
Ensuite, allez dans votre fichier .htaccess
et ajoutez cette ligne dans l'exemple ci-dessous.
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>
oui en effet cela
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]
fonctionne mais vous devez faire une légère modification. Dans le fichier codeiginiterfolder/application/config.php
, remplacez http
par https
.
En outre, l’URL de base dans le code ci-dessus, vous devez remplacer le myhost
par votre nom d’hôte. Supposons que mon nom d’hôte internetseekho.com
soit remplacé par myhost
au lieu de internetseekho
.
Si vous trouvez l'erreur"Aucun fichier d'entrée spécifié"alors ajoutez "?" dans la dernière ligne
RewriteRule ^ (. *) $ Index.php /? $ 1 [L]
dans la réponse de @asiya khan
pour moi, aucune des réponses ci-dessus n'a fonctionné, car elle me montrait trop de redirections, mais celle-ci fonctionnait à merveille. C’est pourquoi j’ai pensé partager si un autre intervenant abordait le même problème:
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]
Notre SSL provient du CDN CloudFlare et les solutions ci-dessus ne fonctionnent donc pas.
Le code de détection SSL suivant (dans SSL.php basé sur la solution @Preetham Hegde) fonctionne:
$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();
}