English Aid : MySQL database data changes need to be made.
www.mysite.com www.mysite.com/changing the way new way
This may be enough to change the content Databese.
What does your post have to do with the topic? And it is not quite clear what your request is about please elaborate and please English only
If you want the url to be www.sitename/blogs, you follow Taisa's recommendation and obtain SEO plugins or you will need to change the routes in the plugin's init.php file. Everywhere where you find the word "forum" you need to change to whatever you want
for example:
OW::getRouter()->addRoute(new OW_Route('forum-default', 'forum', 'FORUM_CTRL_Index', 'index'));
change to
OW::getRouter()->addRoute(new OW_Route('forum-default', 'YOURWORD', 'FORUM_CTRL_Index', 'index'));
If you want just to change the name of the links in the menu bar, you need to go the Pages and Menus section in the admin panel -> hover over, let's say, blogs menu item-> click edit and then change it to mlog, the url will be www.sitename.com/blogs but the menu item will be mlog
If you want the url to be www.sitename/blogs, you follow Taisa's recommendation and obtain SEO plugins or you will need to change the routes in the plugin's init.php file. Everywhere where you find the word "forum" you need to change to whatever you want
for example:
OW::getRouter()->addRoute(new OW_Route('forum-default', 'forum', 'FORUM_CTRL_Index', 'index'));
change to
OW::getRouter()->addRoute(new OW_Route('forum-default', 'YOURWORD', 'FORUM_CTRL_Index', 'index'));
Thanks for this answer ross, it did work as you said, as I want!
Ross, a follow-up question: with the second method, would you need to set up URL redirects for old links that use the old URLs?No you dont need, my old URL's (about forum) works fine but do as ross show.
Much appreciated, thank you!
Ross, a follow-up question: with the second method, would you need to set up URL redirects for old links that use the old URLs?No you dont need, my old URL's (about forum) works fine but do as ross show.