Go Back   Webmaster Forums UK SEO SEM Webmaster Community Forum - UKWW > General > General Webmaster Talk
Register FAQ Members List Downloads Calendar Today's Posts Webmaster Resources Webmaster Blogs
 
 

General Webmaster Talk General webmaster discussion forums - In this forum and its sub forums you can discuss general webmaster related issues or even issues that does not related to Webmastering.
Sub Forums: Running a forum :: Blogs and Blogging :: Word Press Forums :: Digital Photography

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-09-2008, 02:07 PM
Member
 
Join Date: Mar 2008
Posts: 39
Default change from current urls to keyworded urls

like the title says really ^ at the moment i have these sef rewrites but i would like the urls to contain keywords. like instead of having e107 Powered Website: Forums / First Test Forum i have this instead e107 Powered Website: Forum im a totoal newb when it comes to this stuff

.htaccess

# =============================================
# FORUM PLUGIN ================================
RewriteRule forum.html plugins/forum/forum.php
RewriteRule forum([0-9]*)\.html(.*)$ plugins/forum/forum_viewforum.php?$1
RewriteRule forum([0-9]*)-([0-9]*)\.html(.*)$ plugins/forum/forum_viewforum.php?$1.$2
RewriteRule forum-t([0-9]*)\.html(.*)$ plugins/forum/forum_viewtopic.php?$1
RewriteRule forum-t([0-9]*)-([0-9]*)\.html(.*)$ plugins/forum/forum_viewtopic.php?$1.$2
RewriteRule forum-t([0-9]*)-([0-9]*)-next\.html(.*)$ plugins/forum/forum_viewtopic.php?$1.$2.next
RewriteRule forum-t([0-9]*)-([0-9]*)-prev\.html(.*)$ plugins/forum/forum_viewtopic.php?$1.$2.prev
RewriteRule forum-t([0-9]*)-last\.html(.*)$ plugins/forum/forum_viewtopic.php?$1.last
RewriteRule forum-t([0-9]*)-([0-9]*)-track\.html(.*)$ plugins/forum/forum_viewtopic.php?$1.$2.track
RewriteRule forum-t([0-9]*)-([0-9]*)-untrack\.html(.*)$ plugins/forum/forum_viewtopic.php?$1.$2.untrack
RewriteRule forum-r([0-9]*)\.html(.*)$ plugins/forum/forum_post.php?rp.$1
RewriteRule forum-p([0-9]*)\.html(.*)$ plugins/forum/forum_post.php?nt.$1
RewriteRule forum-e([0-9]*)\.html(.*)$ plugins/forum/forum_post.php?edit.$1
RewriteRule forum-t([0-9]*)-report\.html(.*)$ plugins/forum/forum_viewtopic.php?$1..report
RewriteRule forum-q([0-9]*)\.html(.*)$ plugins/forum/forum_post.php?quote.$1
RewriteRule top-poster-([0-9]*)-([0-9]*)\.html(.*)$ top.php?$1.top.forum.$2
RewriteRule top-active([0-9]*)\.html(.*)$ top.php?$1.active
RewriteRule top-active-([0-9]*)-([0-9]*)\.html(.*)$ top.php?$1.active.forum.$2

sitelinks.sc

$patterns[0] = '/plugins\/forum\/forum_viewforum\.php\?([0-9]+)/';
$replacements[0] = 'forum$1.html';
$patterns[1] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.next/';
$replacements[1] = 'forum-t$1-$2-next.html';
$patterns[2] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.prev/';
$replacements[2] = 'forum-t$1-$2-prev.html';
$patterns[3] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.track/';
$replacements[3] = 'forum-t$1-$2-track.html';
$patterns[4] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.untrack/';
$replacements[4] = 'forum-t$1-$2-untrack.html';
$patterns[5] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.last/';
$replacements[5] = 'forum-t$1-last.html';
$patterns[6] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.\.report/';
$replacements[6] = 'forum-t$1-report.html';
$patterns[7] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)/';
$replacements[7] = 'forum-t$1-$2.html';
$patterns[8] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)/';
$replacements[8] = 'forum-t$1-$2.html';
$patterns[9] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)/';
$replacements[9] = 'forum-t$1.html';
$patterns[10] = '/plugins\/forum\/forum\.php/';
$replacements[10] = 'forum.html';

e_module.php

$patterns[0] = '/plugins\/forum\/forum_viewforum\.php\?([0-9]+)/';
$replacements[0] = 'forum$1.html';
$patterns[1] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.next/';
$replacements[1] = 'forum-t$1-$2-next.html';
$patterns[2] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.prev/';
$replacements[2] = 'forum-t$1-$2-prev.html';
$patterns[3] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.track/';
$replacements[3] = 'forum-t$1-$2-track.html';
$patterns[4] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)\.untrack/';
$replacements[4] = 'forum-t$1-$2-untrack.html';
$patterns[5] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.last/';
$replacements[5] = 'forum-t$1-last.html';
$patterns[6] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.\.report/';
$replacements[6] = 'forum-t$1-report.html';
$patterns[7] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)/';
$replacements[7] = 'forum-t$1-$2.html';
$patterns[8] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)\.([0-9]+)/';
$replacements[8] = 'forum-t$1-$2.html';
$patterns[9] = '/plugins\/forum\/forum_viewtopic\.php\?([0-9]+)/';
$replacements[9] = 'forum-t$1.html';
$patterns[10] = '/plugins\/forum\/forum\.php/';
$replacements[10] = 'forum.html';
__________________
DJ Community
DJ Forums

Last edited by djpassion; 04-17-2008 at 12:02 PM.
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Webmaster Resources
 
The Forum Rules
Forum Rules - MUST READ
 
Site Of the Month
BizzFace
Nominate site of the month
 
Tag Cloud
affiliates b2b directory blogging money blogs business directory categories menu directories directory directory script e4 media group e4mediagroup.com ecommerce forum free submit godaddy godaddy codes godaddy coupon godaddy promo home user iphone 3gs justdial clone link mark aselstine new members pages menu paid directories revenue right sidebar search engine script sell link seo sequence hosting subdomain submit site free web hosting website website hosting wine wine club wine clubs yellow

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 07:45 PM.

UK Webmaster World Forums - Internet marketing, web development, domain names, SEO contest and discussuons.
Subscribe to our feeds   Subscribe to our feeds

Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0