Topic: Folder .htaccess, and # anchors links

I am having a issue with Folder view
Example:
http://mydomain.com/post/3942/#p3942

is a 404, but mydomain.com/post/3942/ works fine without the anchor.  So every time I post and it redirects to the anchor it is a 404.


Also when logging in and clicking login, it goes to http://mydomain.com/login/  which is a 404.  If I get logged in, the folder view works browsing the forum and topics however.  (same as register link too)

Re: Folder .htaccess, and # anchors links

I'm not exactly sure what the issue is but....Try uploading this to the forum root directory:

FILE: .htaccess
START

## BEGIN PunBB

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} "post"
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . rewrite.php [L]
</IfModule>

# END PunBB

END

(note: don't include the bold parts in the file.)