Report this

What is the reason for this report?

Lighttpd Opencart url rewrites

Posted on October 13, 2013

I’m on the verge, this is killing me. I can’t for the life of me get the hang of lighttpd’s url rewrites. All I want is everyone to be shipped off to www. instead of accessing my website from http://domain.co.uk (and the same for https). I’ve Googled and tried every example I can find and modified them by adding back slashes and other things until lighttpd wouldn’t restart and it just seems to ignore me.

For people who don’t want to read: I need to rewrite http://domain.co.uk to http://www.domain.co.uk (plus https counter parts) using url rewrites in lighttpd.

Please help!



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

first add mod_rewrite in your serve modules, then add the following rewrite rule <br> <br>server.modules = ( <br># other mod_ <br>“mod_rewrite” <br>) <br> <br> <br>$HTTP[“host”] =~ “^domain.co.uk$” { <br> url.redirect = ( “^/(.*)” => “http://www.domain.co.uk/$1” ) <br>} <br>

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.