.htaccess 通配符文件夹重定向 301 到 Perl 脚本
.htaccess wildcard folder redirect 301 to Perl script
我目前有一个网站,我想用 "booth" 一词重定向 "ANY/ALL" 请求(不区分大小写)我的 link 结构如下所示:
- www.url.com/booth102
- www.url.com/booth103
- www.url.com/booth104
我似乎无法弄清楚,但这是我目前所知道的:
//Rewrite to www
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^.url.com[nc]
RewriteRule ^(.*)$ http://www.url.com/ [r=301,nc]
//301 Redirect Old File
RedirectMatch 301 /booth(*) http://www.url.com/cgi-bin/test.pl
我是这样想出来的:
# Enable Rrewrite Engine
Options +FollowSymLinks
RewriteEngine on
# Rewrite SEO Friendly URL
RewriteRule ^booth.* /cgi-bin/PerlScript.pl?Target=[=10=] [L,NC]
我目前有一个网站,我想用 "booth" 一词重定向 "ANY/ALL" 请求(不区分大小写)我的 link 结构如下所示:
- www.url.com/booth102
- www.url.com/booth103
- www.url.com/booth104
我似乎无法弄清楚,但这是我目前所知道的:
//Rewrite to www
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^.url.com[nc]
RewriteRule ^(.*)$ http://www.url.com/ [r=301,nc]
//301 Redirect Old File
RedirectMatch 301 /booth(*) http://www.url.com/cgi-bin/test.pl
我是这样想出来的:
# Enable Rrewrite Engine
Options +FollowSymLinks
RewriteEngine on
# Rewrite SEO Friendly URL
RewriteRule ^booth.* /cgi-bin/PerlScript.pl?Target=[=10=] [L,NC]