我必须通过web.config更改url?id = to /

时间:2015-12-29 05:34:57

标签: php .htaccess

对于网站中的每个网页,我必须通过web.config将网址从all-products?id=Mw==更改为all-products/Mw==

请告诉我。

1 个答案:

答案 0 :(得分:2)

Options -MultiViews
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

RewriteRule ^all\-products/([^/]+)$ /all\-products?id=$1 [L]