0
I have two domains: domain.com and domain.com.br created in the httdocs folder and being accessed normally. I have a folder called devphp as below:
The domain.com and domain.com.br share the same information (css, js, img), but I’m not being able to successfully insert the files into the domains.
I tried in the following ways
<link rel="stylesheet" href="../dev/public/assets/_css/0_font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="C:\xampp\htdocs\dev\public\assets\_css\0_font-awesome.min.css" type="text/css" />
insert using the first format (<link rel="stylesheet" href="/dev/public/Assets/_css/0_font-awesome.min.css" type="text/css" />), the files do not load and generate a failure when I try to open the link. I created a Virtualhost with the directory that contain the files and tested, even then it didn’t work.
– RRV