我试图让 url 重写工作,但我没有得到任何地方。基本上我想要三个页面,一个用于音乐,然后是一般产品,另一个用于 mvie,每个都有一个查询字符串 &pagetype=general 等,但 URL 是http://shopnbuy.vacau.com/browse/computers。 html?pageType=general将重定向到general_products.php,然后是music_products 和movie_products。所以它们都有相同的 url,只是参数 &pageType= 不同。下面是我的 htaccess 文件,这是我第一次尝试这样做
# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
RewriteEngine On
RewriteRule ^browse/([a-zA-Z0-9_-])\.html general_products.php?department=$1&pageType=general
RewriteRule ^browse/([a-zA-Z0-9_-])\.html music_products.php?department=$1&pageType=music
RewriteRule ^browse/([a-zA-Z0-9_-])\.html movie_products.php?department=$1&pageType=movie
url suppose to look like this
http://shopnbuy.vacau.com/browse/computers.html
我得到的只是每个 url 重写的错误