Thanks, but that's not what I'm having a problem with. My problem is that php code, it disables my links using mod_rewrite.
the rewrite rule I'm using is
Quote:
RewriteEngine On
RewriteRule ^([^/]*)\.html$ index.php?page=$1 [L]
|
So I'm trying to figure out why this code...
Quote:
<?php
$curdir = getcwd ();
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
chdir ($curdir);
?>
|
Interfers with mod_rewrite.