I am trying to enable the pretty url, everything goes pretty well except one. After I enabling the pretty url, all my css style just all disappeared. here is the code I view from firebugs, I included all my css files into a base.css:
After I enabling pretty URL:
Any idea how to fix this?
- Code: Select all
<link media="all" href="css/base.css" type="text/css" rel="stylesheet">
@charset "utf-8";
/* CSS Document */
@import url("normalize.css");
@import url("fonts.css");
@import url("master.css");
</link>
After I enabling pretty URL:
- Code: Select all
<link media="all" href="css/base.css" type="text/css" rel="stylesheet">
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
<script type="text/javascript" src="/2128641310C9433088EA2B83EAA4C084/D99E8727-D90D-E044-BD14-38E8620564B6/main.js" charset="UTF-8"></script></head><body>
<h1>Not Found</h1>
<p>The requested URL /ourproducts/bedroom-set/css/base.css was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
<hr>
<address>Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8e-fips-rhel5 DAV/2 mod_jk/1.2.26 Server at eurodome.net Port 80</address>
</body></html>
</link>
Any idea how to fix this?