SEO Friendly URLs for J-Board Pages

From KitchenTwo

Jump to: navigation, search

If you would like to have SEO friendly URL's for the page system in J-Board you can use Apache mod_rewrite.

This will change your page URL's from

/page.php?p=about

To

/page/p/about/

Create a .htaccess file in the root folder of your install and place this in it (or add it to an existing .htaccess)

Options +FollowSymLinks
RewriteEngine on
RewriteRule page/p/(.*)/ page.php?p=$1
RewriteRule page/p/(.*) page.php?p=$1

You will also have to change the links in your template to the new URL.

Personal tools