我有几个下面列出的重写规则
RewriteRule ^([^/\.]+)\.html?$ php/statePage.php?region_slug=$1 [L]
RewriteRule ^([^/\.]+)-tree-services/([^/\.]+)\.html?$ php/cityPage.php?region_slug=$2&state_slug=$1 [L]
RewriteRule ^([^/\.]+)-tree-services/([^/\.]+)/([^/\.]+)\.html?$ php/vendorPage.php?slug=$3®ion_slug=$2&state_slug=$1 [L]
RewriteRule ^([^/\.]+)-Sitemap\.xml?$ php/xmlState.php?region_name=$1 [L]
RewriteRule ^([^/\.]+)\.html?$ php/otherPages.php?pageSlug=$1 [L]
前四个正常工作,但最后一个重写规则显示文件的模板而statePage.php
不是otherPages.php
文件。