MyBB Community Forums

Full Version: Search Engine Friendly URL
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
i just update my verion of mybb to 1.4 on one of my sites and the Search Engine Friendly URL is sort of working but i am getting it come up like this

http://www.site.com/forums/thread-37-post-71.html#pid71


i would like it to how like this

http://www.site.com/forums/thread-37-post-71.html

what do i have to change in the .htaccess for this to work in this why like mybb fourms has here
how are you getting these SEO URLs ?
SEO URLs aren't even working for mine.
from my site with the new copy of mybb 1.4 on it http://tinyurl.com/6f7ss6
ok i now this much did u change the the htaccess.txt file to . htaccess you can do it in your ftp
(2008-08-03, 12:51 PM)Zash Wrote: [ -> ]SEO URLs aren't even working for mine.
You have to rename the htaccess.txt to .htaccess

EDIT: Tazfan was earlier Toungue
Hi guys,

As per the instructions on the Wiki, you need to rename htaccess.txt to .htaccess - Then it will work.

This is because .htaccess by default was causing some problems on some hosts.

Ryan
(2008-08-03, 04:31 PM)Tikitiki Wrote: [ -> ]Hi guys,

As per the instructions on the Wiki, you need to rename htaccess.txt to .htaccess - Then it will work.

This is because .htaccess by default was causing some problems on some hosts.

Ryan

Hm...i still can't see any SEF links even though I renamed it?
Where can be the problem?
(2008-08-04, 07:39 PM)InFlames20 Wrote: [ -> ]Hm...i still can't see any SEF links even though I renamed it?
Where can be the problem?

Did you enabled it in your ACP ?
Configuration - Server and Optimization Options - Enable search engine friendly URLs? - Enabled
(2008-08-04, 07:54 PM)LeX- Wrote: [ -> ]
(2008-08-04, 07:39 PM)InFlames20 Wrote: [ -> ]Hm...i still can't see any SEF links even though I renamed it?
Where can be the problem?

Did you enabled it in your ACP ?
Configuration - Server and Optimization Options - Enable search engine friendly URLs? - Enabled

Yep.
And be sure you have this:
- You have to use the Apache webserver
- The rewrite mod has to be enabled
- .htaccess files has to be enabled in the config of your site: the AllowOverride variable of your directory has to be All:

An example:
	<Directory /www/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride All
		Order allow,deny
		allow from all
	</Directory>
Pages: 1 2