View Single Post

  #1 (permalink)  
Old 06-22-2008, 01:36 PM
rootadmin rootadmin is offline
Junior Member
User
 
Join Date: Jun 2008
My distro: centos 5
Posts: 15
Rep Power: 0
rootadmin is on a distinguished road
Default Lighttpd Gallery2 URL Rewrite (.htaccess) SEO Rules

The following is .htaccess file i used with apache , now i want the same functionality with lighttpd , but since lighttpd do not support .htaccess then what should i do then ??
Thanks In Advance.
PHP Code:
#RewriteEngine on
##point to installation directory
##if it is the root dir,enter /
#RewriteBase  /

RewriteRule   ^show.php/(.*)$ show2.php?img=$[L]
RewriteRule   ^out.php/([a-z]{1})(.*)$ out2.php?$1=$[L]
RewriteRule   ^view.php/(.*)$ view2.php?img=$[L]
RewriteRule   ^image.php/([a-z]{1})(.*)$ images2.php?$1=$[L]
RewriteRule   ^gallery/([0-9]+)-([^/]*)/(.*)$ gallery.php?gal=$1&img=$[L]
RewriteRule   ^view/([0-9]+)-([^/]*)/(.*)$ gallery_body.php?gal=$1&img=$[L]

Reply With Quote