1
Hi All,
I have a non-xoops site which I have converted into a XOOPS site. All the content has been migrated into the new database and all is well.
I used the information in this
thread to make sure that when 'old' content was accessed the user would be led to the new location.
the problem lies with the following line :
RewriteRule ^viewtopic.php?topic=([0-9]+)&forum=([0-9]+) /modules/newbb/viewtopic.php?topic_id=$1&forum=$2 [L]
This does not work as expected because of the ? character in the first part which is throwing things off. (the ? is a regular expression quantifier; or so google has told me)
So the question is how can I redirect my users to the right place if the first bit can't have a ? character in it. Or is there a way to escape the ? character ???
Kind regards, Highlander