>       I'm clear on the concept of symbolic linking, but in practice 
>I seem to be having a problem ...
>
>       I've got a client that screwed up some print advertising and 
>listed the wrong directory name. Instead of "/abc", they called it 
>"/ABC" (all caps). My "fix" is to create a new (all caps) directory 
>and symbolically link that new directory to the correct (all 
>lower-case) one. However, I'm doing something wrong.
>
>       I've tried the following command:
>
>               ln -s   abc/index.html   ABC
>
>       The resulting output (ls -l ABC) is ...
>
>               lrwxrwxrwx    1 root     client       14 Sep  3 17:59 
>index.html -> abc/index.html
>
>       The creation of the symbolic link seems to have created the 
>"index.html" file in "ABC". However, the browser doesn't render this 
>link properly. I still get a "Parent Directory" screen when accessing 
>"www.client.com/ABC/".
>
>       What am I doing wrong??

You created the directory.  Bad.  Makes things not work as expected :-)

Do the following:

        rm -r ABC
        ln -s abc ABC

Do this in the path that contains the "abc" directory.

If this is a directory inside of your web server.  Just turn on the spelling
check module for Apache.  That module not only gets you close for bad
typing, it also ignores case.  So it can be entered as "abc", "AbC", etc.

MB
-- 
e-mail: [EMAIL PROTECTED]       It is God's job to forgive bin Laden.
                                It is our job to set up the meeting.
                                    U.S. Marine Corp.
Visit - URL: http://www.vidiot.com/  (Your link to Star Trek and UPN)



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to