Hello, this is a flippin' n00b question and I know it, but it's been driving me up a wall for a day now.
The problem is that I've got a CSS file that WORKS. I've tried it in the webroot directory. But I moved it to /var/www/styles and now it's like the server cannot find it AT ALL. Maddening. Any helpful, or even just sincere, suggestions would be appreciated.
I've got the following in my httpd.conf file
Code:
<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
#
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
Alias /images /var/www/graphics
Alias /css /var/www/styles
Alias /test /home/vaughtg/Dropbox/MyWebsite/LocalSite
Alias /help /home/vaughtg/Dropbox/PHP_Docs
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
#
ScriptAlias /cgi-bin "/usr/local/apache2/cgi-bin/"
ScriptAlias /classes /var/www/phpclasses
ScriptAlias /ssi /var/www/includes
</IfModule>
And the following code in my web page
Code:
<LINK HREF="/css/mine.css" REL="STYLESHEET" TYPE="text/css" />