Discussion
403 Error with .htaccess(back to index)I tried to install folderblog 3 beta7 and as soon as I upload the .htaccess it blocks access from every file in that directory, even if i call the file directly. when i remove the .htaccess i can call up the fb.php, but because of the new url structure that doesn't make sense.
posted by jan on 28 Jun 05 at 1:21 PM
Jan, try using this updated .htacess file:
# Start folderblog redirecting
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule fb.php(.*)$ ?cgi_uri=%{REQUEST_URI}
</IfModule>
#End
Not positive it will work, but fingers crossed. Let me know if you still have the bug.
posted by
donald on 29 Jun 05 at 4:18 PM
That code should be:
# Start folderblog redirecting
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule fb.php.*$ fb.php?cgi_uri=%{REQUEST_URI}
</IfModule>
#End
posted by
donald on 29 Jun 05 at 5:14 PM
Mhh, I still get the same error.
posted by jan on 6 Jul 05 at 10:48 AM
Post a Reply:
(back to index)