# Use mod_rewrite to enable "Clean URLs" for a PmWiki installation. RewriteEngine On RewriteRule (.*) http://rhetorica.uaf.edu/ [R=301,L] # Define the rewrite base. RewriteBase /wiki # Send requests without parameters to pmwiki.php. RewriteRule ^$ index.php [L] # Send requests for index.php to pmwiki.php. RewriteRule ^index\.php$ index.php [L] # Send requests to pmwiki.php, appending the query string part. RewriteRule ^([A-Z0-9\xa0-\xff].*)$ index.php?n=$1 [QSA,L]