<html>
<!-- BEGIN WEBMAIL STATIONERY -->
<head></head>
<body>
<!-- WEBMAIL STATIONERY notheme -->
<div></div>We are in the process of moving our wiki to a new server.&nbsp; I have managed to get the wiki to work on the new server, but the clean URL function will not work.&nbsp; I have tried the methods described on the Clean URL page with no success.&nbsp; Here are the details:<br><br>1.&nbsp; Have checked through the apache2 conf file and mod_rewrite and .htaccess are enabled.<br>2. We have an index.php pointing to pmwiki.php, so the .htaccess script I am using looks like this (written by a previous user):<br># Redirect requests from former location to this one<br>Redirect permanent /wiki http://our.wiki.url.goes.here<br>Redirect permanent /wiki* http://our.wiki.url.goes.here<br># Use mod_rewrite to enable "Clean URLs"<br>RewriteEngine On<br># Define rewritebase<br>RewriteBase /<br>#Send requests without parameters to index.php<br>RewriteRule ^$ index.php [L]<br>#Send requests for files and directories that exist to those files and directories<br>RewriteCond %{REQUEST_FILENAME} !-f<br>RewriteCond %{REQUEST_FILENAME} !-d<br># Send other requests to pmwiki.php, appending the query string part.<br># Send requests for /wiki to /<br>#RewriteRule /wiki\/(.*)/ $1 [QSA,L]<br>RewriteRule (.*) index.php?n=$1 [QSA,L]<br><br>The configure.php file has this:<br># Clean URLs<br>$ScriptUrl = 'http://our.wiki.url.address';<br>$EnablePathInfo = 1;<br><br>This is running on Linux Red Hat with Apache 2.2.3, and PHP 5.1.6<br>The old server that DID allow clean URLs was this:<br>RHL 2.6.9, Apache 2.0.52, PHP 4.3.9<br><br>What might I be missing?<br><br>Thanks!<br>Norma<br>




<!-- END WEBMAIL STATIONERY -->

</body>
</html>