Thanks Patrick. On <a href="http://www.pmwiki.org/wiki/Cookbook/CleanUrls">http://www.pmwiki.org/wiki/Cookbook/CleanUrls</a> I tried to implement &quot; Example One: .htaccess and pmwiki.php in the Same Directory&quot;and may be misinterpreting the ~someuser/pmwiki placeholder. I ended up with an .htaccess file and config statement that look a lot more like Example Two - but this worked in terms of navigation. Like a charm. Anyway this is what I have (where wikidoc is the directory below my domain URL), in case an anomaly is clear (I may be overlooking some simple error, but suspect it&#39;s something I&#39;m misunderstanding:
<br><br>(,htaccess)<br><br># Use mod_rewrite to enable &quot;Clean URLs&quot; for a PmWiki installation.<br>RewriteEngine On<br># Define the rewrite base.<br>RewriteBase /wikidoc<br># Send requests without parameters to pmwiki.php
.<br>RewriteRule ^$&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pmwiki.php&nbsp; [L]<br># Send requests for index.php to pmwiki.php.<br>RewriteRule ^index\.php$ pmwiki.php&nbsp; [L]<br># Send requests to pmwiki.php, appending the query string part.<br>RewriteRule ^([A-Z0-9\xa0-\xff].*)$ 
pmwiki.php?n=$1&nbsp; [QSA,L]<br><br><br>(at top of local/config.php)<br><br>&lt;?php if (!defined(&#39;PmWiki&#39;)) exit();<br>## Use &quot;Clean URLs&quot;.<br>$EnablePathInfo = 1;<br>$ScriptUrl = &quot;<a href="http://www.panafril10n.net/wikidoc">
http://www.panafril10n.net/wikidoc</a>&quot;;<br><br><br><br><div><span class="gmail_quote">On 11/1/07, <b class="gmail_sendername">Patrick R. Michaud</b> &lt;<a href="mailto:pmichaud@pobox.com">pmichaud@pobox.com</a>&gt; wrote:
</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">On Thu, Nov 01, 2007 at 01:47:32AM -0400, Donald Z. Osborn wrote:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;It took me a while to get it to work - great relief until finding out that
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I can&#39;t save any edits.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I think I have all the codes right in config and with .htaccess. ANy quick<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;ideas what could be the problem?<br><br>First (and most important), make sure that $ScriptUrl
<br>has been set properly in the config.php .<br><br>Beyond that, we&#39;d probably need to see the .htaccess file<br>or have a url for the site to look at.&nbsp;&nbsp;If edits aren&#39;t<br>being saved (but they used to work beforehand) it&#39;s
<br>often an indication that there&#39;s an improper redirection<br>taking place somewhere.<br><br>Pm<br><br></blockquote></div><br>