url rewrite
I also had a question about the mod_rewrite. I know this isn't in yoyr mod, so if you don't feel like answering this, don't worry about it.
I was having problem with the post page.
Here is my code for it
Code:"'(?<!/)viewtopic.php\?p=([0-9]*)'"
Replaced with
"bucs-post\\1.html"
My htaccess looks like this:
Code:...
RewriteRule ^bucs-post([0-9]*).* viewtopic.php?p=$1
...
When I use this, it always gives me a page telling me that the post could not be found, but when I type in the viewtopic?p=NUM directly, it works fine. I was wondering if it had anything to do with the anchor tag (#) and was wanting to know how you solved the problem.
Once again, thanks.
George