私は codeigniter サイトを持っており、常に ssl を強制したいと考えています。htaccess ファイルを使用して、醜い index.php を削除しています
これは私が今持っているhtaccesファイルの内容です...
RewriteEngine on
RewriteCond $1 !^(index\.php|static|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
常にsslを使用するにはどうすればよいですか?
ありがとう!