TTUWiki/ttuwiki-website/master/htdocs/.htaccess - Htaccess File

TTUWiki/ttuwiki-website/master/htdocs/.htaccess

Options -Indexes

RewriteEngine On
# If there's no query string, change the page name part into a query.
RewriteCond %{REQUEST_URI} ^(/download)
RewriteRule ^download/([^/]+)$ /cgi-bin/wiki.pl?action=download&id=$1 [QSA,L]

RewriteCond %{QUERY_STRING} ^$
RewriteRule ^([^/]+)$ /cgi-bin/wiki.pl/$1 [QSA,L]

# Otherwise, do a plain redirect.
RewriteRule ^$ cgi-bin/wiki.pl [QSA,L,PT]

On Github License

Files

Download PDF of Htaccess file
QUERY_STRING, REQUEST_URI

Comments

Apache