
Untitled
# Use PHP5CGI as default
AddHandler fcgid-script .php
RewriteEngine on
# Change 'subdirectory' to be the directory you will use for your main domain.
# Don't change this line.
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change 'subdirectory' to be the directory you will use for your main domain.
# Change yourdomain.com to be your main domain again.
# Change 'subdirectory' to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?nathania.org$
RewriteRule ^/?nathania(/.*)?$ %{DOCUMENT_ROOT}/nathania/index.php [PT,L,QSA]
RewriteRule ^nathania/wiki/(.*)$ %{DOCUMENT_ROOT}/nathania/w/index.php?title=$1 [PT,L,QSA]
RewriteRule ^nathania/wiki/*$ %{DOCUMENT_ROOT}/nathania/w/index.php [L,QSA]
RewriteRule ^nathania/*$ %{DOCUMENT_ROOT}/nathania/w/index.php [L,QSA]
RewriteRule ^wiki/(.*)$ nathania/w/index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ nathania/w/index.php [L,QSA]
RewriteRule ^/*$ nathania/w/index.php [L,QSA]