From: Jeff D. <da...@da...> - 2001-11-16 17:34:00
|
On Fri, 16 Nov 2001 10:42:50 +0100 "Tara Star" <te...@cl...> wrote: > Adam Shand wrote: > > >>I would like http://spirolattic.net/ to point to the wiki, and > >>http://spirolattic.net/RecentChanges to point to RecentChanges... you > >>get the idea. Try: (I'm assuming this is going in a .htaccess file, if it's going into the server config file, you need to handle/expect leading /'s in the URLs. I'm also assuming you've copied index.php to 'wiki'.) RewriteEngine On RewriteRule ^wiki - [L] RewriteRule ^wiki/.* - [L] RewriteRule ^(.*) wiki/$1 [L] I think you'll also have to manually define VIRTUAL_PATH to the empty string, in 'wiki' (assuming 'wiki' is your index.php.) |