OpenUrls-Talk
This space is for User-contributed commentary and notes. Please include your name and a date along with your comment.
Comments
Working on pmwiki-2.1.3: Well, I couldn't use the default configuration for mod_rewrite, I don't know why it doesn't worked. So, here it's what I did: First, created an .htaccess file and uploaded it to my default wiki directory. This wasn't my root server dir.
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^([A-Z].*) pmwiki.php?n=$1 [L,qsappend] RewriteRule ^$ pmwiki.php [L,qsappend] </IfModule>
Then, edited this part on the config.php file in my /pmwiki/local/ directory. Replace the . with your actual server.
$ScriptUrl
= './wp-wiki';
Last, edited the openurl-0.1.php to allow the rewrite, and that was it! I wrote this because there weren't clear instructions on how to do this, so I had to guess. Good luck! Stahn(03-23-06)