CodeIgniter 3 routes don't work in HTTPS |
When you say "not working", what exactly do you mean?
Is your site returning any error? More so, your rewrite rule has a ? which is different from what is seen in the docs here. Is that on purpose? See the difference. Your code: Code: RewriteRule ^(.*)$ index.php?/$1 [L] CI Documentation: Code: RewriteRule ^(.*)$ index.php/$1 [L] |
Messages In This Thread |
CodeIgniter 3 routes don't work in HTTPS - by alfonsosach - 11-30-2020, 03:34 AM
RE: CodeIgniter 3 routes don't work in HTTPS - by sammyskills - 11-30-2020, 07:48 AM
RE: CodeIgniter 3 routes don't work in HTTPS - by alfonsosach - 11-30-2020, 07:52 AM
RE: CodeIgniter 3 routes don't work in HTTPS - by InsiteFX - 11-30-2020, 12:05 PM
RE: CodeIgniter 3 routes don't work in HTTPS - by alfonsosach - 12-01-2020, 02:20 AM
RE: CodeIgniter 3 routes don't work in HTTPS - by InsiteFX - 12-01-2020, 01:36 PM
|