我想将旧网站的所有页面重定向到另一个/新网站的子页面。
例如
应全部重定向到
new-domain.net/page-generel
答案 0 :(得分:0)
您需要创建.htaccess文件并将以下代码放入其中:
RewriteEngine on
RewriteRule ^(.*) http://new-domain.net/page-general [R=permanent,L]
<强>更新强> 如果尚未启用,还需要在apache中启用mod_rewrite。 参考在ubuntu中启用mod_rewrite: http://www.iasptk.com/enable-apache-mod_rewrite-ubuntu-14-04-lts/ 对于centOS: https://devops.profitbricks.com/tutorials/install-and-configure-mod_rewrite-for-apache-on-centos-7/