0

我正在使用带有 Apache2 的 Ubuntu Server 来托管我的网站。

我有两个域,www.test.com 和 www.domain.com(不是实名)

在我的可用站点中,我有一个指向我的 www.test.com 域的默认值,然后我在里面为 www.domain.com 创建了一个:

<VirtualHost *:80>
ServerName www.domain.com
ServerAlias domain.com
DocumentRoot /var/www/domainfolder
<Directory />
Options +FollowSymLinks
AllowOverride all
</Directory>
</VirtualHost>

现在该网站正常工作,我可以导航到它并使用它,但是由于我将它用于 wordpress,所以当我点击说 Admin CP 时,它会尝试导航到 www.domain.com/domainfolder/admin-cp/ 我'我只是不确定为什么它试图访问它存储的文件夹?

使用 .htaccess 只会给我一个内部服务器错误,因为它总是在一个目录下,这是代码:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !(.*)folder 
RewriteRule ^(.*)$ domainfolder/$1 [L]
4

1 回答 1

0

他们需要虚拟主机中的单独地址才能使用单独的目录。

给定 example.com 和文件夹一、二和三

您需要选择 1.example.com(一)、example.com/two 和 example.com/three 或 example.com(一)、two.example.com 和 three.example.com

  1. example.com(一)、two.com 和three.com

给定 DocumentRoot /www/subdomain/sub1 ServerName www.sub1.domain.tld ServerPath /sub1/

RewriteEngine On
RewriteRule ^(/sub1/.*) /www/subdomain$1

您是否有类似于上面突出显示的部分的规则,重写是您获得所需漂亮地址的方式。

另外,确保启用了 apache mod_rewrite。

于 2013-02-28T03:53:13.220 回答