You may want to write your own $MakePageNamePatterns ;
http://www.pmwiki.org/wiki/Cookbook/AlternateNamingScheme
should help you.

Excerpt :

Beware, if you do NOT uppercase the first letter of your pagenames,
the wiki will stop recognizing them as files, and you will need to
alter the variables:
    $GroupPattern = '[\\w]*(?:-\\w+)*';
    $NamePattern = '[\\w]*(?:-\\w+)*';


Gilles.




2011/11/17  <[email protected]>:
> Hi. Does anybody know how can I get clean URLs in lower-case, like
> "http://mysite.com/main/homepage"; instead of
> "http://mysite.com/Main/Homepage"; ? Here's my .htaccess file:
>
> # Use mod_rewrite to enable "Clean URLs" for a PmWiki installation.
> RewriteEngine On
> # Define the rewrite base.
> RewriteBase /sites/rodrigomolinaro
> # Send requests without parameters to pmwiki.php.
> RewriteRule ^$ pmwiki.php [L]
> # Send requests for index.php to pmwiki.php.
> RewriteRule ^index\.php$ pmwiki.php [L]
> # Send requests to pmwiki.php, appending the query string part.
> RewriteRule ^([A-Z0-9\xa0-\xff].*)$ pmwiki.php?n=$1 [QSA,L]
>
> Thank you for any help!
>
> Rod
>
>
>
> _______________________________________________
> pmwiki-users mailing list
> [email protected]
> http://www.pmichaud.com/mailman/listinfo/pmwiki-users
>



-- 

---------------------------------------
| A | de la langue française
| B | http://www.languefrancaise.net/
| C | [email protected]
---------------------------------------

_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to