[SOLVED] .htaccess redirect from https to http shows the "index.php?" |
[eluser]Joakim_[/eluser]
Hi. I trying to redirect all https to http, except one auth controller. The problem is that the "index.php?" shows up when doing a redirect. So if you enter: https://example.com/test/ You are redirected to http but the address will look like this: http://example.com/index.php?/test The .htaccess file looks like this: Code: RewriteEngine On Any help are very appreciated! ![]() Thanks!
[eluser]PowerCode[/eluser]
In your application/config/config.php, change $config['index_page'] = "index.php?"; into $config['index_page'] = "";. EDIT: I just noticed that you're doing a redirect from .htaccess itself, so above solution won't work. Lemme have a closer look at the problem... EDIT 2: Code: RewriteEngine On I think you'll need to change the /index.php?/$1 to /$1 as above. This is because once the redirect has been done from or to HTTPS/HTTP, the rule to rewrite everything to /index.php?/$1 would be executed regardless. On a side note, I've just changed the ordering of the rewrite rule above too, since I think it looks more logical (I believe rewrite rules are traversed in order they've mentioned). Though it might not make any difference.
[eluser]Joakim_[/eluser]
Thank you very much for your reply PowerCode. I changed to: Code: RewriteRule ^(.*)$ /$1 It now shows a "Internal Server Error" on all pages but the redirection from https http don't show the index.php no more. The "RewriteRule ^(.*)$ /index.php?/$1" code is also used to remove the index.php from all pages. Do you think that might be the problem? Thank you so much!
[eluser]PowerCode[/eluser]
Oops, I'm really sorry. You actually need the index.php or index.php? (as required by some hosts). So your previous query was right. That's the reason for the internal server error. So you need to change it back to RewriteRule ^(.*)$ /index.php?/$1. My bad. Just make sure you've set $config['index_page'] I mentioned above to "", though it may not be the problem. Anyways, I just did a small test, Code: RewriteEngine On I had this in a folder called HTTPS, and thus tried http://localhost/HTTPS/auth, which matched the second condition. Now instead of redirecting to https://localhost/HTTPS/auth, it redirects to https://localhost/HTTPS/auth?/auth. I don't know what the problem is ![]()
[eluser]Phil Sturgeon[/eluser]
Edit: Post removed due to the content of the message being entirely useless.
[eluser]Joakim_[/eluser]
[quote author="PowerCode" date="1230634122"]Oops, I'm really sorry. You actually need the index.php or index.php? (as required by some hosts). So your previous query was right. That's the reason for the internal server error. So you need to change it back to RewriteRule ^(.*)$ /index.php?/$1. My bad. Just make sure you've set $config['index_page'] I mentioned above to "", though it may not be the problem. Anyways, I just did a small test, Code: RewriteEngine On I had this in a folder called HTTPS, and thus tried http://localhost/HTTPS/auth, which matched the second condition. Now instead of redirecting to https://localhost/HTTPS/auth, it redirects to https://localhost/HTTPS/auth?/auth. I don't know what the problem is ![]() Thank you very much for all your help! The strange thing is that it used to work when I had the CI installation in a folder like /ci/. When I moved it to root and combined the .htaccess files from root and /ci/ it didn't work no more. Before, the .htaccess code to remove the index.php? was in a separate .htaccess file in the /ci/ directory and the rest was in the root .htaccess file. Like this: /.htaccess (root) Code: RewriteEngine On /ci/.htaccess Code: RewriteEngine On Thanks! ![]()
[eluser]Joakim_[/eluser]
Okey I got it working now by moving the system to a new folder in root named "ci" and placed the .htaccess to remove index.php in that directory. The folder is rewritten as root with this .htaccess code: Code: RewriteRule ^(.*)$ /ci/$1 |
Welcome Guest, Not a member yet? Register Sign In |