A php script to generate virtual pages based on keyword array, is using a template master file
. This is it's rule:
RewriteRule ^([+a-zA-Z0-9]+)/([+a-zA-Z0-9]+)\_service.html$ /master-one.php?city=$1 [L]
I want to add another master file to be read based on the secondary keyword array. Tried copying the rule, changes /master-one.php
to /master=two.php
, But this results in pages being generated by keyword, but displays master-one.php
content.
How do I solve this riddle?