Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Invite and base URL 404s
I'm getting a 404 on invite links. This one for example: http://www.formlovesfunction.com/forum/entry/register/5VUQROG4
Not sure if this is related, but the following URLs also 404:
http://www.formlovesfunction.com/forum
http://www.formlovesfunction.com/forum/
http://www.formlovesfunction.com/forum/index.php
Adding a trailing slash works:
http://www.formlovesfunction.com/forum/index.php/
I'd like all of these URLs to work. Is there something I need to tweak within Vanilla? Something on the server configuration?
Not sure if this is related, but the following URLs also 404:
http://www.formlovesfunction.com/forum
http://www.formlovesfunction.com/forum/
http://www.formlovesfunction.com/forum/index.php
Adding a trailing slash works:
http://www.formlovesfunction.com/forum/index.php/
I'd like all of these URLs to work. Is there something I need to tweak within Vanilla? Something on the server configuration?
0
Comments
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Is it possible to add a rewrite rule to fix my problem?
Any ideas?