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!
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>
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.