LoginSignup
1
2

More than 5 years have passed since last update.

mod_rewriteでページ単位でリダイレクトさせる方法

Posted at

URLを1個ずつ指定して別のサイトにリダイレクトさせる場合の書き方。

こういうケースではRewriteCondは不要です。

/foo/bar.html => http://www.example.com/new/bar.html
/foo/buz.html => http://www.example.com/new/buz.html

設定

RewriteRule ^foo/bar.html$  http://www.example.com/new/bar.html [R=301,L]
RewriteRule ^foo/buz.html$  http://www.example.com/new/buz.html [R=301,L]
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2