0

すべての PDF ファイルを特定のフォルダー (ここ) から別のフォルダー (ここ)totoのルートにリダイレクトしたいと思います。tata

www.mywebsite/toto/fic1.pdf                   -> www.mywebsite/tata/
www.mywebsite/toto/fic2.pdf                   -> www.mywebsite/tata/
www.mywebsite/toto/fic3.pdf                   -> www.mywebsite/tata/
www.mywebsite/toto/fic4.pdf                   -> www.mywebsite/tata/
www.mywebsite/toto/sousDossier/fic4.pdf       -> www.mywebsite/tata/

ファイルごとに 1 行書きましたが、きれいではありません...

RedirectPermanent /toto/fic1.pdf http://www.mywebsite/tata/
4

2 に答える 2

1
RewriteEngine On
RewriteRule /?toto/.*\.pdf$ /tata/ [R=301,L]
于 2012-04-23T14:01:07.673 に答える
0

mod_rewrite と .htaccess を有効にしてからhttpd.conf、このコードをディレクトリの.htaccess下に配置します。DOCUMENT_ROOT

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

RewriteRule ^toto/[^.]+\.pdf$ tata/ [R=301,L,NC]
于 2012-04-23T14:06:42.967 に答える