Jump to content

Apache to LightTPD Simple Rewrite?


emcgfx

Recommended Posts

  • 1 year later...

LightTPD does have a rewrite module. By default it is not enabled if you build from source or even install it using an rpm.

To enable it you'll need to edit your config file.

...
server.modules              = (
#                               "mod_rewrite",
#                               "mod_redirect",
...

 

and uncomment the mod_rewrite:

 

...
server.modules              = (
                               "mod_rewrite",
#                               "mod_redirect",
...

 

Then restart your lighttpd server. Usually:

/etc/init.d/lighttpd reload

 

but if you don't have an init script:

lighttpd -f /path/to/config/file.conf

 

After that, you'll need to add in a rewrite to one of your configuration files. If you are hosting only one site you can do it right in the lighttpd.conf file as:

url.rewrite = (
  "^/([^.?]*)$" =>  "/index.php?p=$1"
)

 

If you need to do it for multiple sites you can find out more in the documentation.

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.