Info
- 4 posts
- 2 voices
- Started 4 years ago by dcfridge
- Latest reply from itissue
- This topic is not resolved
Problems with navigation to profile page and posting
-
- Posted 4 years ago #
The installation seemed to go smooth, and I can get to the main admin page, and main forum page, but when I navigate to "edit profile" I get the error below. A very similar error comes up when I try to post...I think it may have something to do with a redirection setting, but not sure.
- Dave
https://www.mydomain.com/bbpress/profile/1
Multiple Choices
The document name you requested (/bbpress/profile/1) could not be found on this server. However, we found documents with names similar to the one you requested.Available documents:
* /bbpress/profile.php/1 (common basename)
Please consider informing the owner of the referring page about the broken link.
-
- Posted 4 years ago #
I'm having the same problem. I can't get my profile page or tags page to show up. They're both broken links for some reason.
-
- Posted 4 years ago #
Links to forum topics are broken as well. I'm unable to post topics. Here's the url to my forum
http://forum.suefeng.com -
- Posted 4 years ago #
Nevermind. I figured it out. I needed a .htaccess file, and it needed to contain this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum.php?id=&page= [L,QSA]
RewriteRule ^forum/([^/]+)/?$ /forum.php?id= [L,QSA]
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=&page= [L,QSA]
RewriteRule ^topic/([^/]+)/?$ /topic.php?id= [L,QSA]
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /tags.php?tag=&page= [L,QSA]
RewriteRule ^tags/([^/]+)/?$ /tags.php?tag= [L,QSA]
RewriteRule ^tags/?$ /tags.php [L,QSA]
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /profile.php?id=&page= [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /profile.php?id=&tab= [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /profile.php?id=&tab=&page= [L,QSA]
RewriteRule ^profile/([^/]+)/?$ /profile.php?id= [L,QSA]
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /view.php?view=&page= [L,QSA]
RewriteRule ^view/([^/]+)/?$ /view.php?view= [L,QSA]
RewriteRule ^rss/?$ /rss.php [L,QSA]
RewriteRule ^rss/forum/([^/]+)/?$ /rss.php?forum= [L,QSA]
RewriteRule ^rss/topic/([^/]+)/?$ /rss.php?topic= [L,QSA]
RewriteRule ^rss/tags/([^/]+)/?$ /rss.php?tag= [L,QSA]
RewriteRule ^rss/profile/([^/]+)/?$ /rss.php?profile= [L,QSA]
</IfModule> -
You must log in to post.