I want to implement the following:

  • New site structure, based on new directory path, new PHP framework, DB structure, and so on. The site should be reachable under http://www.mysite.com
  • Some pages from an old structure should keep working. Old site structure should be available and stay in its old folder, say /var/www/myoldsite
  • Generally speaking, when I call specific pages, say http://www.mysite.com/specificpage.php, the old site should be called, otherwise, only pages from new site should be availble.

How should I design that? In virtual host of apache? Or in a .htaccess file?

link|improve this question

43% accept rate
feedback

1 Answer

I'm not sure if I undrestand it correctly, but

I would propose you your new site will be available under http://www.mysite.com/new

Put this into .htaccess file:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^\.php$ http://www.mysite.com/new/$1.php [R=301,L]

This will redirect all traffic to new site if not eist in old

link|improve this answer
ok,thanks for your hint. so at some stage, say after 6 months, i can kill old? – Confidence Jan 2 at 12:09
When you want to stop old site code, simply move folder /var/www/mynewsite to /var/www/oldsite and remove this .htaccess rule.Then all trafic will go to document root of "old" site, but now there will be "new" site files. – rkosegi Jan 2 at 12:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.