-
Hi, Nice Now want to prepare the website I want to upload to my server and try I hope to check, at leat the first page at "http://127.0.0.1:8000/" as previous ... Transfert the output directory to the server, it works. But RELATIVE_URLS should be = False on the server, no ? The "publishconf.py" is now
I do not understand the meaning of the 3 firsts lines |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The SITEURL line — It sounds like the path to the CSS file is not being calculated correctly. If you view the HTML source in the web browser, you'll see the path to the stylesheet near the top of the file: <link
rel="stylesheet"
type="text/css"
href="-->>>URL here<<<--"
/> The |
Beta Was this translation helpful? Give feedback.
The SITEURL line —
SITEURL = "https://my-domain.tld/My-folder"
— implies that you want to serve your site on a sub-directory of the website root. Is that true?It sounds like the path to the CSS file is not being calculated correctly. If you view the HTML source in the web browser, you'll see the path to the stylesheet near the top of the file:
The
URL here
value is probably wrong, and perhaps missing the sub-directory. Can you confirm that much?