Redirect trac requests to the right place.
This commit is contained in:
parent
755a2c596c
commit
c1dc2410c3
1 changed files with 5 additions and 2 deletions
|
@ -82,9 +82,12 @@ compress.filetype = (
|
|||
compress.cache-dir = "/var/cache/lighttpd"
|
||||
|
||||
#
|
||||
# Redirect wiki requests to the wiki
|
||||
# Redirect trac and wiki requests to the right places
|
||||
#
|
||||
url.redirect = ( "^/wiki/(.*)$" => "http://wiki.openstreetmap.org/$1" )
|
||||
url.redirect = (
|
||||
"^/trac/(.*)$" => "http://trac.openstreetmap.org/$1",
|
||||
"^/wiki/(.*)$" => "http://wiki.openstreetmap.org/$1"
|
||||
)
|
||||
|
||||
#
|
||||
# Serve static content from the rails public area ourselves
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue