Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

Friend URL help

edited February 2008 in Questions
Been trying to modify it unsuccessfully, only had a quick run through of it however.

Basically I want to have categories listed as .com/whatever/ - .com/bugs/ etc

However upon editing and removing "discussion" etc for the categories, I'm still left with this as a URL when uploaded. Any help?

#Discussions
RewriteRule ^$ index.php [QSA,L]
RewriteRule ^/$ index.php [QSA,L]
RewriteRule ^/([0-9]+)$ index.php?page=$1 [QSA,L]
RewriteRule ^/([0-9]+)/$ index.php?page=$1 [QSA,L]
RewriteRule ^([0-9]+)$ index.php?CategoryID=$1 [QSA,L]
RewriteRule ^([0-9]+)/$ index.php?CategoryID=$1 [QSA,L]
RewriteRule ^([0-9]+)/([0-9]+)$ index.php?CategoryID=$1&page=$2 [QSA,L]
RewriteRule ^([0-9]+)/([0-9]+)/$ index.php?CategoryID=$1&page=$2 [QSA,L]

#Categories
RewriteRule ^/$ categories.php [QSA,L]

Is how it currently stands, any help?

Comments

This discussion has been closed.