Penguin
Note: You are viewing an old revision of this page. View the current version.

Apache lets you do cool things with rewrite rules.

DefineMe? AddToMe

On a related not I was mucking about with phpWiki and trying to get it to work the same way you have it set up. Ie, using path info based urls (eg, /wiki/!SomePageHere?) and I couldn't get it to work. I'd be interested to know how you set yours up.

in the index.php "config" file

define('SCRIPT_NAME', '/wlug'); define('DATA_PATH', '/phpwiki-1.3.3'); define('VIRTUAL_PATH', '/wlug');

% mkdir wlug % cd wlug % cat >.htaccess <<EOF

RewriteRule? (.*) /phpwiki-1.3.3/index.php/$1 [L?

RewriteEngine? On

EOF