0

リダイレクトしようとしています

.\testvid.\videos\testvid

htaccessの使用

しかし、私は次のような何百ものフォルダーに対してもそれを行っています:

.\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、このコードをディレクトリの.htaccess下に配置します。DOCUMENT_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 に答える