# Roots sage css path is incorrect and 404'ing (FIXED)

**URL:** https://discourse.roots.io/t/roots-sage-css-path-is-incorrect-and-404ing-fixed/5928
**Category:** sage
**Tags:** gulp
**Created:** 2016-02-12T23:54:38Z
**Posts:** 2

## Post 1 by @nathansmithdeveloper — 2016-02-12T23:54:38Z

I did a fresh install of Sage on my Windows 10 laptop, the compiling seems to be working and all the code is showing up in the /dist folder, but the full CSS path is incorrect.

Currently it is missing my project name, so it looks like this:

`<link rel="stylesheet" href="/content/themes/our-theme/dist/styles/main.css">`

when it should be this (my project name is called ‘nateandsig’):

`<link rel="stylesheet" href="/nateandsig/content/themes/our-theme/dist/styles/main.css">`

Any ideas?

I haven’t touched my .htaccess file and I’ve updated my devUrl to be ‘[http://localhost/nateandsig](http://localhost/nateandsig)’ (My localhost doesn’t use a port number).

---

## Post 2 by @nathansmithdeveloper — 2016-02-13T04:14:43Z

Ah nvm, I fixed it!

Turns out I had to define my content url in my local-config.php like so:

`define( 'WP_CONTENT_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/nateandsig/content' );`
