Posted by Anees on 08/09/07 03:28
hi
i was trying to implement mode rewrite option in a blog site.
i used the lines for listing the posts by its topic category as
#List by Category
RewriteRule ^Topics/([a-z0-9-]+)$ index.php?cat=$1 [L]
#With page navigation option
RewriteRule ^Topics/([a-z0-9-]+)/([0-9]*)$ index.php?cat=$1&start=$2
[L]
so by the first rule it will list all topics when we calls
blog.com/Topics/computer
when pagnavigation comes the url will be
blog.com/Topics/computer/2 - here 2 is second page..
and am almost succeed too
but the problem si when i am going for the page navigation button, am
loosing the relative paths which i inserted for CSS file, and all
other images...
i tempororly solved dat my giving the full path/root path for all the
relative path places in my script...
please help me to find out the solution for solving the same thru mode
rewrite method itself..
ie i may not be able to edit my relative paths included in my script
for various file inclusion..
in which way i need to move?
Please help
Regards
Anees
Navigation:
[Reply to this message]
|