1
我無法訪問子域中的Joomla管理員頁面。joomla管理員在子域空白頁
這裏是什麼樣子,該網站是http://test.com和管理頁面必須http://admin.test.com
我使用的是WAMP服務器與虛擬主機啓用。
,這裏是我的httpd-vhosts.conf:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "c:\wamp\www\test"
ServerName test.com
ServerAlias www.test.com
ErrorLog "C:\wamp\www\test\logs\error.log"
CustomLog "C:\wamp\www\test\logs\access.log" common
<Directory "c:/wamp/www/test">
AllowOverride All
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "C:\wamp\www\test\administrator"
ServerName admin.test.com
ServerAlias www.admin.test.com
ErrorLog "C:\wamp\www\test\logs\error.log"
CustomLog "C:\wamp\www\test\logs\access.log" common
<Directory "c:/wamp/www/test/administrator">
AllowOverride All
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
test.com工作正常,但管理員沒有。它只顯示一個白色的空白頁面。我還注意到,由於頁面標題加載管理頁面標題,重定向在管理員中起作用。
我在使用Joomla! 3.4.4穩定的,帶有Apache/2.4.9和PHP 5.5.12的WAMP服務器。
沒有錯誤,它只是空白的白頁 – jake