Olá boa tarde, é o seguinte pessoal, estou tentando acessar o arquivo css do bootstrap com o codeigniter 4, porém eu acho q por conta do virtual host que configurei no apache para ele não usar a url toda(localhost/www/scv/public) e esta enxergando localhost com o caminho inteiro. Já usei o …\ e …/…/ para ele voltar a raiz do projeto e encontrar o bootstrap.css. Mas não adiantou eu acho que ele está pegando o caminho todo do localhost.
Virtual Hosts
<VirtualHost *:80>
ServerName scv
ServerAlias scv
DocumentRoot "${INSTALL_DIR}/www/scv/public"
<Directory "${INSTALL_DIR}\www\scv\public">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
Html
<!DOCTYPE html>
<html lang=pt-br>
<head>
<link href="../bootstrap-4.5.2/css/bootstrap.css" rel="stylesheet">
</head>
<body>
<div class="shadow p-3 mb-5 bg-white rounded">
Olá
</div>
</body>
</html>