MyBB Community Forums

Full Version: Modify Custom URL in Google SEO?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As default when I click on the name of category it adds +"Forum" like this:
website.com/Forum-category-name


How do I remove the "Forum"?
if you remove "forum" it will make many conflict url

for example in my forum
ziuma.com/admin (i received many conflict url in ACP)
so i add "@" like this ---> ziuma.com/@admin#comments/1
you can change "forum" to "f" but can't remove this


setting in ACP and .httacces
---------
RewriteRule ^forum-([0-9]+)\.html$ forumdisplay.php?fid=$1 [L,QSA]
---------

change "forum" to "f"


see this threads
https://community.mybb.com/thread-101262.html
Thank you after some research I decided not to remove it Smile
Quote:Thank you after some research I decided not to remove it
Can you explain more in detail why you decided against this?

Quote:if you remove "forum" it will make many conflict url
What would happen in the event that 2 threads have the same name in the same forum?

/Thread-gravatar-working
/Thread-gravatar-working

??

Also what would happen to current existing links if one changed forum to f?
if 2 threads have same name in forum

first threads
/Thread-gravatar-working

second threads .......
/Thread-gravatar-working--997

i don't know that number mean (threads number or post number)

in my forum some threads have same name
for example is in "introduction your self"
It uses the tid of the thread in the case of a conflicting url. If you had two forums with the same name it would use the fid since that is unique to each forum.