Forum Moderators: phranque
I have the following rewrite:
RewriteRule (.*)-(.*)\.php section.php?network=$1&page=$2
Problem.. I would like to use it in two instances as follows:
RewriteRule (.*)-(.*)\.php section.php?network=$1&page=$2
RewriteRule (.*)-(.*)\.php index.php?network=$1&page=$2
----------------------
It only rewrites the url within section.php, but does not rewrite it for index.php. How can I make it so it rewrites for both php pages the same url?
Thanks