Hello,
i found a bug, if you search for a prefix, the result page displays the prefixes like this:
http://<<ur>>l/forums/?prefixid=Rapidshare
this will result in a 404 error page.
And i?ve got another problem, i use this rewrite script for my lighttpd for seo urls. The /forum/ rewrite will nor work with your mod, can anybody help me to change the string?
Code:
url.rewrite-once = (
"/entries/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?))" => "/entry.php?b=$1&page=$2&$query_string",
"/threads/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?))" => "/showthread.php?t=$1&page=$2&$query_string",
"/members/([0-9]+)" => "/member.php?u=$1&$query_string",
"/forums/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?))" => "/forumdisplay.php?f=$1&page=$2&$query_string",
"/blogs/([0-9]+)(?:/?$|(?:-[^/]+))(?:/?$|(?:/page([0-9]+)?))" => "/blog.php?u=$1&page=$2&$query_string",
"/list/([^/]*/)([0-9]+)" => "/list.php?r=$1$2&$query_string",
"/content/(.*)" => "/content.php?r=$1&$query_string",
"/widget/config/([0-9]+)" => "/widget.php?r=config/$1&$query_string",
"/clientscript/(.*)" => "/clientscript/$1"
)