0

我正在尝试重定向

.\testvid.\videos\testvid

使用 htaccess

但我也在为 100 个文件夹做这件事,例如:

.\testvid2.\videos\testvid2

.\testvid3.\videos\testvid3

.\testvid4.\videos\testvid4

我可不可以做:

.\{SET_VARIABLE}.\videos\{VARIABLE HERE}

我目前可以使用静态条目来完成

RedirectMatch 301 ^/testvid http://domain_here.com/New_fodler/testvid

但我想用一个变量来设置它

谢谢!

4

1 回答 1

0

我认为你有\而不是/在你的例子中。

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+?)/?$ /videos/$1 [L,R=301]
于 2013-09-19T20:11:31.023 回答