<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
On 20. 02. 2011 13:21, adam wrote:
<blockquote cite="mid:1298204474.3579.187.camel@esetera" type="cite">
  <pre wrap="">On Sun, 2011-02-20 at 13:16 +0100, Aleksandar Erkalovic wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">On Sun, Feb 20, 2011 at 1:11 PM, adam <a class="moz-txt-link-rfc2396E" href="mailto:adam@xs4all.nl"><adam@xs4all.nl></a> wrote:
    </pre>
    <blockquote type="cite">
      <pre wrap="">i was worried about having a script open for anyone to use that writes
directly to a htacess file...
      </pre>
    </blockquote>
    <pre wrap="">
i will never understand your obsession with htaccess file :) well,
every request for url like /book/chapter/ is send to php script. soooo
you just do dispatcher in that script and problem solved. or i am
missing something here?!

    </pre>
  </blockquote>
  <pre wrap="">
if u wanna show me how to do the redirects then fine :)


adam

  </pre>
</blockquote>
once you know where to redirect, (hopefully no need for real humans
here),<br>
it's just<br>
<pre><code><?php
// Permanent redirection
header("HTTP/1.1 301 Moved Permanently");
header("Location: $newurl");
exit();
?>

</code>LF
</pre>
<br>
<br>
<blockquote cite="mid:1298204474.3579.187.camel@esetera" type="cite">
  <pre wrap="">

_______________________________________________
Discuss mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Discuss@lists.flossmanuals.net">Discuss@lists.flossmanuals.net</a>
<a class="moz-txt-link-freetext" href="http://lists.flossmanuals.net/listinfo.cgi/discuss-flossmanuals.net">http://lists.flossmanuals.net/listinfo.cgi/discuss-flossmanuals.net</a>
  </pre>
</blockquote>
<br>
</body>
</html>