Lighttpd map html pages to php (execute html pages as php)

Lighttpd logo

Sometime you need to run old html file(s) as php pages, especially if you are migrating from Apache web server. To treat html pages as php you need to map multiple extensions to the same fastcgi server using fastcgi.map-extensions directive.

For example:

Task: Map html to php

fastcgi.map-extensions = ( ".html" => ".php" )

Task: Map old .php3 files to php

fastcgi.map-extensions = ( ".php3" => ".php" )

However, when you map .html file you need to disable mod_compress which does output compression and reduces the network load. It can improve the overall throughput of the webserver. This module by default compress .html file. You have two choices:
a) Remove the module
b) Skip .html files from (mod_compress)

Open Lightttpd configuration file:
# vi /etc/lighttpd/lighttpd.conf
Find out compress.cache-dir and compress.filetype directive and comment out (or remove the lines):
# compress.cache-dir = "/tmp/lighttpd/cache/compress/"
# compress.filetype = ("text/plain", "text/html")

Next, find out mod_compress server.modules line and comment out the same.

Next map .html extension by adding the directive:
fastcgi.map-extensions = ( ".html" => ".php" )

At the end your configuration should look like as follows (your fastcgi directives may look little different):
fastcgi.map-extensions = ( ".html" => ".php" )
fastcgi.server = ( ".php" =>
((
"bin-path" => "/usr/bin/php",
"socket" => "/tmp/php.socket",
"max-procs" => 2,
"idle-timeout" => 20,
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "4",
"PHP_FCGI_MAX_REQUESTS" => "10000"
),
"bin-copy-environment" => (
"PATH", "SHELL", "USER"
),
"broken-scriptfilename" => "enable"
))
)

Save and close the file. Restart lighttpd server:
# /etc/init.d/lighttpd restart

It took 30+ minutes to solve this small problem. Finally following command gave me back answer:
$ lynx http://localhost/test.html

It was downloading test.html as .gz file. I immediately realized that sever is compressing files (test.html) using mod_compress and then transmitting file to client. So I disabled the mod_comress, restarted the server and voila!

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 3 comments… read them below or add one }

1 sagar 10.23.06 at 10:39 pm

thanks for tip. it is working now.

2 sandhya rana 03.07.07 at 5:25 am

hello
please tell the way of execute html(steps)

3 sandhya rana 03.07.07 at 5:26 am

please tell the way of run html steps

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post: Download of the day: Free AVG 7.1 anti-virus for Linux

Next post: Fedora Core 6 available for download