0

我想为 Apache2(使用 centos 6 和 PHP5.4)中的文件夹创建别名。我的想法是将项目从一台服务器迁移到另一台服务器。

例子:

访问:

SetAlias /home/before.com/ /home/after.com/

PHP

include( '/home/before.com/header.php' );//include header from "/home/after.com/"

谢谢!

4

1 回答 1

1

这是错误的做法。请参阅文档:http ://httpd.apache.org/docs/current/mod/mod_alias.html

您也不能在 .htaccess 中设置别名。

于 2013-06-27T19:50:55.927 回答