View Full Version : links/directory mod_rewrite help


larryjam
02-27-2005, 07:44 PM
I have no knowledge of php, but I am learning quickly. I am setting up a links/directory site at http://www.lwj1.aboho.com

I would like to make the links more search engine friendly.

The links are currently as such
http://www.lwj1.aboho.com/browse.php?cat=54

I understand that I need a mod_rewrite to make the link as
http://www.lwj1.aboho.com/Aboriginal People/

Can I do this?


Please Help

deleon
02-28-2005, 09:23 AM
Your Apache must have installed a mod_rewrite module and .htaccess file next directives:

RewriteEngine On
RewriteBase /
RewriteRule ^dir/(.*)$ /index.php/$1 [L]

In the index.php you must convert url path to the category ID.