MyBB Community Forums

Full Version: .htaccess ACP Links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to rename my .htaccess links, so instead of:

Quote:forum-2.html

I want:

Quote:f-f2.htm

How do I modify the links in MyBB to reflect this, also is it the same with topic URLs
Take the google seo plugin and edit the variables?
I'm about 95% sure you can do that.
I know you can change domain.com/user-Sam to domain.com/Sam so I'm willin to bet you can do it that way.
Quote:RewriteRule ^forum-([0-9]+)\.html$ forumdisplay.php?fid=$1 [L,QSA]
RewriteRule ^forum-([0-9]+)-page-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2 [L,QSA]

Change it to

Quote:RewriteRule ^f-f([0-9]+)\.html$ forumdisplay.php?fid=$1 [L,QSA]
RewriteRule ^f-f([0-9]+)-page-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2 [L,QSA]
I have done that and MyBB is still linking to forum-2.html etc.
Are you using SEF URLS or Google SEO ? If you're using SEF then you've to change the URL in ./inc/init.php file.
That's what I was looking for, Cheers Yaldaram.