Forum Moderators: phranque
If they type in a # in the url it goes to that topic, for example:
1250 would display display_topic.php?topic=1250
Also if they put a / at the end it displays that page number:
1250/2 would display_topic.php?topic=1250&page=2
I tried:
RewriteRule ([0-9]+)/([0-9]+) display_topic.php?topic=$1&page=$2
But this doesn't work.
Thanks.
If they go to [somesite...]
I want it to go to [somesite...]
if they go to [somesite...]
I want it to go to
[somesite...]
If that is not possible, I guess a comma instead of a slash would be fine
[somesite...] -> [somesite...]
Currently I have mod_rewrite working for the topic part, but I can't get the page part to work.
Thanks again.