![]() |
|
|
|
#1 |
|
Thanks for your previous responses!
when I go to my website, www.godisstillspeakingaustin.org my page does not come up. if I got to www.godisstillspeakingaustin.org/home.html it does. How do I make my page come up with just www.godisstillspeakingaustin.org Thanks, jojo jojo |
|
|
|
|
#2 |
|
Posts: n/a
|
jojo wrote:
> Thanks for your previous responses! > > when I go to my website, www.godisstillspeakingaustin.org > my page does not come up. > if I got to www.godisstillspeakingaustin.org/home.html it > does. How do I make my page come up with just > www.godisstillspeakingaustin.org Rename home.html to index.html -- Els http://locusmeus.com/ Sonhos vem. Sonhos vão. O resto é imperfeito. - Renato Russo - Now playing: Deep Purple - Pictures Of Home |
|
|
|
#3 |
|
Posts: n/a
|
"Els" <> wrote in message news:Xns960EE5E2BB885Els@130.133.1.4... > jojo wrote: > > > Thanks for your previous responses! > > > > when I go to my website, www.godisstillspeakingaustin.org > > my page does not come up. > > if I got to www.godisstillspeakingaustin.org/home.html it > > does. How do I make my page come up with just > > www.godisstillspeakingaustin.org > > Rename home.html to index.html > > -- > Els http://locusmeus.com/ > Sonhos vem. Sonhos vão. O resto é imperfeito. > - Renato Russo - > Now playing: Deep Purple - Pictures Of Home Thanks you! That certainly was easy! jojo |
|
|
|
#4 |
|
Posts: n/a
|
jojo wrote:
> "Els" <> wrote in message > news:Xns960EE5E2BB885Els@130.133.1.4... > >>jojo wrote: >> >> >>>Thanks for your previous responses! >>> >>>when I go to my website, www.godisstillspeakingaustin.org >>>my page does not come up. >>>if I got to www.godisstillspeakingaustin.org/home.html it >>>does. How do I make my page come up with just >>>www.godisstillspeakingaustin.org >> >>Rename home.html to index.html >> >>-- >>Els http://locusmeus.com/ >>Sonhos vem. Sonhos vão. O resto é imperfeito. >> - Renato Russo - >>Now playing: Deep Purple - Pictures Of Home > > > Thanks you! > That certainly was easy! > > jojo Els is our Godess. She knows everything -- x theSpaceGirl (miranda) # lead designer @ http://www.dhnewmedia.com # # remove NO SPAM to email, or use form on website # |
|
|
|
#5 |
|
Posts: n/a
|
SpaceGirl wrote:
>>>> when I go to my website, www.godisstillspeakingaustin.org >>>> my page does not come up. >>>> if I got to www.godisstillspeakingaustin.org/home.html it ^^^^^^^^^ >>>> does. How do I make my page come up with just >>>> www.godisstillspeakingaustin.org >>> >>> >>> Rename home.html to index.html >> >> Thanks you! >> That certainly was easy! >> >> jojo > > > Els is our Godess. She knows everything Or set the directive "DirectoryIndex home.html" in your httpd.conf. -- Jan http://www.janfaerber.com |
|
|
|
#6 |
|
Posts: n/a
|
Jan Faerber wrote:
> SpaceGirl wrote: > >>>>> when I go to my website, www.godisstillspeakingaustin.org >>>>> my page does not come up. >>>>> if I got to www.godisstillspeakingaustin.org/home.html it > ^^^^^^^^^ >>>>> does. How do I make my page come up with just >>>>> www.godisstillspeakingaustin.org >>>> >>>> Rename home.html to index.html > > Or set the directive > "DirectoryIndex home.html" > in your httpd.conf. Unless you have your own server, you usually don't have access to httpd.conf -- Els http://locusmeus.com/ Sonhos vem. Sonhos vão. O resto é imperfeito. - Renato Russo - |
|
|
|
#7 |
|
Posts: n/a
|
Els wrote:
> > Unless you have your own server, you usually don't have access > to httpd.conf However, many directives can be put in .htaccess, which you probably *do* have access to. -- Reply email address is a bottomless spam bucket. Please reply to the group so everyone can share. |
|
|
|
#8 |
|
Posts: n/a
|
kchayka wrote:
> Els wrote: >> >> Unless you have your own server, you usually don't have >> access to httpd.conf > > However, many directives can be put in .htaccess, which you > probably *do* have access to. That's true - although I have no idea what to add to the ..htaccess file to make home.html the default in a directory. -- Els http://locusmeus.com/ Sonhos vem. Sonhos vão. O resto é imperfeito. - Renato Russo - |
|
|
|
#9 |
|
Posts: n/a
|
While sitting in a puddle Els scribbled in the mud:
> kchayka wrote: > >> Els wrote: >>> >>> Unless you have your own server, you usually don't have >>> access to httpd.conf >> >> However, many directives can be put in .htaccess, which you >> probably *do* have access to. > > That's true - although I have no idea what to add to the > .htaccess file to make home.html the default in a directory. > DirectoryIndex home.html -- D? |
|
|
|
#10 |
|
Posts: n/a
|
Els wrote:
> > I have no idea what to add to the > .htaccess file to make home.html the default in a directory. Just add 1 line and put the .htaccess file in the server root directory: DirectoryIndex home.html index.html The above means it will look for home.html first. If not there, look for index.html. Note that this applies to the directory where the .htaccess file is located and all its subdirectories. -- Reply email address is a bottomless spam bucket. Please reply to the group so everyone can share. |
|