我想在我的网页上使用网址重写
http://example.com/subcategories.php?sub_category=1&location=Jaipur&sort=rating
我想将其转换为
http://example.com/{sub_category_name}.html
页面上的列表来自其他页面,使用ajax
我在.htaccess中使用的代码是
RewriteRule ^(.*)$ /subcategories.php?subcat_name=$1&sub_category=$2&location=$3&sort=$4 [QSA]
但是页面显示为空白。需要有关正确重写规则的帮助才能使其正常工作