Hello folks,<br><br>I&#39;ve searched both the pmwiki site and the mailing list archive for some hint about allowing .shtml extensions to pages.<br><br>The wiki is smart enough to redirect requests like<br><a href="http://www.pmwiki.org/wiki/PmWiki/MailingLists.html">http://www.pmwiki.org/wiki/PmWiki/MailingLists.html</a><br>
to<br><a href="http://www.pmwiki.org/wiki/PmWiki/MailingLists">http://www.pmwiki.org/wiki/PmWiki/MailingLists</a>,<br>but if I try<br><a href="http://www.pmwiki.org/wiki/PmWiki/MailingLists.shtml">http://www.pmwiki.org/wiki/PmWiki/MailingLists.shtml</a><br>
... I get an error:<br><h3>PmWiki can&#39;t process your request</h3>
    <p class="vspace">?invalid page name</p>
    <p class="vspace">We are sorry for any inconvenience.</p>
    
    <p class="vspace"><a href="http://www.pmwiki.org/wiki">Return to http://www.pmwiki.org/wiki</a></p><br>Now, I found the place where the wiki fixes the html extension in function ResolvePageName($pagename)<br><br>But short of editing that function and creating a cookbook php file of the entire function just to change <br>
&nbsp; $pagename = preg_replace(&#39;!([./][^./]+)\\.html$!&#39;, &#39;$1&#39;, $pagename);<br>to<br>&nbsp; $pagename = preg_replace(&#39;!([./][^./]+)\\.[s]html$!&#39;, &#39;$1&#39;, $pagename);<br>...it seems too much.<br><br>Are there other ways to allow requests to .shtml pages to be redirected to the actual wiki page?<br>
<br>Could someone figure out rhe RewriteRule I can use in the .htaccess file for the site that would do this at the server level?<br><br>Thank you<br>Radu<br><br>