﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
13912	mod_wsgi documentation uses an erroneous example of AliasMatch	Chris Beaven	nobody	"The example given of:
{{{
AliasMatch /([^/]*\.css) /usr/local/wsgi/static/styles/$1
}}}

Is completely wrong. `AliasMatch` is a regular expression matcher, so this will match any url that ends with ""/*.css""

For example, `/not/root/media.css` will be resolved as `/usr/local/wsgi/static/styles/media.css`

The correct example would be:
{{{
AliasMatch ^/([^/]*\.css) /usr/local/wsgi/static/styles/$1
}}}
"		closed	Documentation	1.2		fixed	deployment		Accepted	0	0	0	0	0	0
