htaccess重写规则URL


htaccess RewriteRule URL

我正在尝试重写一堆URL,如下所示:

http://example.com/test/gallery/?view=gallery&画廊=214

http://example.com/gallery/?view=gallery&画廊=214

我觉得gallery/后面的url不重要吗?只是想摆脱中间的"测试"。

我已经试过了:

RewriteCond %{QUERY_STRING} ^id=([0-9]+)$
RewriteRule ^$ test?id=$1 [QSA,L]

提前感谢

示例代码htaccess重写

RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www'. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]