我正在尝试制定重写规则,将这个长网址重写为对 SEO 友好的网址。但是,我的规则不起作用,目标 url 变成了 404 页面。我会很感激任何帮助。谢谢!
这是原始 URL 的示例
http://www.mydomain.com/index.php?module=product&pId=102&id=14495&category=computer/DELL&start=0/
这是我的重写规则
RewriteRule ^module/([^/] )/pId/([^/] )/id/([^/] )/category/([^/] )/start/([^/]*)$ /index .php?module=$1&pId=$2&id=$3&category=$4&start=$5 [L]
这是转换后的 URL
http://www.mydomain.com/index/module/product/pId/102/id/14495/category/computer/DELL/start/0/