Force SSL - remove index.php from url redirect
Added by JayR over 12 years ago
Hi,
I want to redirect any incoming request to https. I just tried the configuration http://redmine.lighttpd.net/projects/lighttpd/wiki/HowToRedirectHttpToHttps from lighttpd wiki to redirect http to https.
The redirecting works fine until I enter an absolute non-https url like http://www.mydomain.com/test/
This ends up with a redirect to https://www.mydomain.com/index.php/test/
Here is my configuration:
### 10-ssl.conf ### $SERVER["socket"] == ":80" { $HTTP["host"] == "www.mydomain.com" { url.redirect = ( "^/(.*)" => "https://www.mydomain.com/$1" ) server.name = "www.mydomain.com" } } $SERVER["socket"] == "www.mydomain.com:443" { ssl.engine = "enable" [.....] } ### lighttpd.conf ### $HTTP["host"] == "www.mydomain.com" { server.document-root = "/var/www/www.mydomain.com/web/" url.rewrite-once = ( "^/(.*)\.(.*)" => "$0", "^/([^.]+)$" => "/index.php/$1", "^/$" => "/index.php" ) }
Actually it is kind of correct because anything should be redirected to index.php.
But I don't want to show the index.php in my URLs.
Is there a "better" redirect solution???
Thanx in advance!
Best regards,
Jan