Joe Jobs
Joe Jobs

Reputation: 251

Changing the URL formatting in phpBB

Some forums show links that look like static files. For example this one: http://romaniaraw.freeforums.org/principii-f33.html

however, it also works like this: http://romaniaraw.freeforums.org/viewforum.php?f=33

How can I tell to phpbb to change the URL formatting from one way to another? (for the moment, the forum is set to show the links in the first manner)

Do those two types of URL formatting have names, by the way?

Upvotes: 0

Views: 373

Answers (1)

BugHunter
BugHunter

Reputation: 1204

You can achieve this using .htaccess file

RewriteEngine on
RewriteRule ^principii-f([0-9]+).html  /viewforum.php?f=$1 [NC]

Upvotes: 1

Related Questions