htaccess重定向或重写规则

时间:2018-05-15 21:06:49

标签: apache .htaccess

基本上,我有这个htaccess规则,我想概括一下:

RewriteCond %{QUERY_STRING} (^|&)sale/details\.php\?id\=1234($|&)
RewriteRule ^properties$ /property/1234?&%{QUERY_STRING}

我想在条件中用正则表达式([0-9] +)替换1234并在我的规则中检索:

RewriteCond %{QUERY_STRING} (^|&)sale/details\.php\?id\=([0-9]+)($|&)
RewriteRule ^properties$ /property/$1?&%{QUERY_STRING}

但是它不起作用,我做错了什么?

提前致谢。

0 个答案:

没有答案