supajason
Member
- Messages
- 288
- Reaction score
- 2
- Points
- 18
hello i have been trying for a while and cant get this to work so maybe you can!
I have a page call "category.php"
This will just open the file
http://localhost/category/
Second
http://localhost/category.php?id={param}
http://localhost/category/{param}/
Last its
http://localhost/category.php?id={param}&page={No}
http://localhost/category/{param}/{No}
i just cant get the last bit working.
so far i have:
Please help!
I have a page call "category.php"
This will just open the file
http://localhost/category/
Second
http://localhost/category.php?id={param}
http://localhost/category/{param}/
Last its
http://localhost/category.php?id={param}&page={No}
http://localhost/category/{param}/{No}
i just cant get the last bit working.
so far i have:
Code:
RewriteEngine On
RewriteRule ^category/([^/]*)$ /category.php?id=$1 [L]
Please help!