[dokuwiki] Re: Clean URL's and media

  • From: Alexandre Rossi <alexandre.rossi@xxxxxxxxx>
  • To: dokuwiki@xxxxxxxxxxxxx
  • Date: Fri, 21 Oct 2005 22:03:00 +0200

Hi,

> here's my .htaccess file:
> --------
> ## Comment these rules in if you want to have nice URLs
> RewriteEngine on
> RewriteRule ^$                        doku.php  [L]
> RewriteCond %{REQUEST_FILENAME}       !-f
> RewriteCond %{REQUEST_FILENAME}       !-d
> RewriteRule (.*)                      doku.php?id=$1  [QSA,L]
> RewriteRule ^index.php$               doku.php
> --------

I had this problem. You are missing the new rewrite rules. See .htaccess.dist
--------
RewriteEngine on
+ RewriteRule ^_media/(.*)              lib/exe/fetch.php?media=$1  [QSA,L]
+ RewriteRule ^_detail/(.*)             lib/exe/detail.php?media=$1  [QSA,L]
RewriteRule ^$                        doku.php  [L]
RewriteCond %{REQUEST_FILENAME}       !-f
RewriteCond %{REQUEST_FILENAME}       !-d
RewriteRule (.*)                      doku.php?id=$1  [QSA,L]
RewriteRule ^index.php$               doku.php
----------
--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

Other related posts: