Подключил сайт shoppriorityclub.loc к локальному компьютеру вот так
<VirtualHost *:80>
ServerAdmin admin@test.com
ServerName shoppriorityclub.loc
ServerAlias www.shoppriorityclub.loc
DocumentRoot /var/www/shoppriorityclub.loc/frontend/web
ErrorLog /var/www/error.log
CustomLog /var/www/access.log combined
<Directory /var/www/shoppriorityclub.loc>
Options Indexes FollowSymLinks Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
a2encite делал в host прописан адрес викидыват на страницу стартовую но вообше без стилей и js
подобным образом подключил и admin.shoppriorityclub.loc но его вообще выкидывает на главную shoppriorityclub.loc вот конфиг апача
<VirtualHost *:80>
ServerAdmin admin@test.com
ServerName admin.shoppriorityclub.loc
ServerAlias www.admin.shoppriorityclub.loc
DocumentRoot /var/www/shoppriorityclub.loc/backend/web
ErrorLog /var/www/error.log
CustomLog /var/www/access.log combined
<Directory /var/www/admin.shoppriorityclub.loc>
Options Indexes FollowSymLinks Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
htaccess есть во всех папках в смысле backend/web и frontend/web
собствено вот backend
AddDefaultCharset UTF-8
Options +FollowSymLinks
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
вот frontend
AddDefaultCharset UTF-8
Options +FollowSymLinks
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
логи ошибок пустые
что я делаю не так ?