Announcement

Collapse
No announcement yet.

OT: htaccess line?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    OT: htaccess line?



    Can anyone tell me what this means in an .htaccess file?

    IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

    Chuck Lasker
    DoublePlus New Media Marketing
    [email protected]



    #2
    OT: htaccess line?



    On a server with directory indexing turned on, that will
    prevent files that are named .htaccess, begin with a
    period, have a tilde or pound sign in them, or begin with
    HEADER or README or _vti from being shown.

    David

    [email protected] wrote:
    > Can anyone tell me what this means in an .htaccess file?
    >=20
    > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
    >=20
    > Chuck Lasker
    > DoublePlus New Media Marketing
    > [email protected]
    >=20
    >=20

    Comment


      #3
      OT: htaccess line?



      It means you have FrontPage extensions installed on the server.... or at
      least they used to be there (disabling FP extensions does not change these
      default entries in .htaccess).

      IndexIgnore prevents viewing of files specified on that line using web
      browsers. On a properly configured server directory indexing should be
      turned off already, but FrontPage includes this line automatically when you
      install it on a domain.

      Remik Kolodziej
      dotCOM designers - Miva Premier Hosting Partner
      <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>




      ----- Original Message -----
      From: "Chuck Lasker - DoublePlus" <[email protected]>
      Sent: Tuesday, April 19, 2005 1:28 PM
      Subject: [mru] OT: htaccess line?


      > Can anyone tell me what this means in an .htaccess file?
      >
      > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
      >
      > Chuck Lasker



      Comment


        #4
        OT: htaccess line? - Follow Up Question



        Okay, cool. So with an htaccess file as follows:
        --------------------
        # -FrontPage-

        IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

        <Limit GET POST>
        order deny,allow
        deny from all
        allow from all
        </Limit>
        <Limit PUT DELETE>
        order deny,allow
        deny from all
        </Limit>
        AuthName www.newscienceideas.com
        AuthUserFile /home/virtual/site6/fst/var/www/html/_vti_pvt/service.pwd
        AuthGroupFile /home/virtual/site6/fst/var/www/html/_vti_pvt/service.grp

        Redirect /index.html
        <A HREF ="http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=SFNT&Store_Code">http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=SFNT&Store_Code</A>
        =UT
        ----------------

        Why would this code not work in there for SFL? I put it at the top, and I
        get Forbidden errors at the site and in admin....

        RewriteEngine On
        RewriteCond %{REQUEST_URI} !-s
        RewriteRule ^page/(.*) /Merchant2/merchant.mvc?page=$1

        Chuck




        > -----Original Message-----
        > From: Remik - dotCOM designers [mailto:[email protected]]
        > Sent: Tuesday, April 19, 2005 3:48 PM
        > To: [email protected]; 'Miva List'
        > Subject: Re: [mru] OT: htaccess line?
        >
        > It means you have FrontPage extensions installed on the
        > server.... or at
        > least they used to be there (disabling FP extensions does not
        > change these
        > default entries in .htaccess).
        >
        > IndexIgnore prevents viewing of files specified on that line
        > using web
        > browsers. On a properly configured server directory indexing
        > should be
        > turned off already, but FrontPage includes this line
        > automatically when you
        > install it on a domain.
        >
        > Remik Kolodziej
        > dotCOM designers - Miva Premier Hosting Partner
        > <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>
        >
        >
        >
        >
        > ----- Original Message -----
        > From: "Chuck Lasker - DoublePlus" <[email protected]>
        > Sent: Tuesday, April 19, 2005 1:28 PM
        > Subject: [mru] OT: htaccess line?
        >
        >
        > > Can anyone tell me what this means in an .htaccess file?
        > >
        > > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
        > >
        > > Chuck Lasker
        >
        >
        >


        Comment


          #5
          OT: htaccess line? - Follow Up Question



          Probably the ? In the redirect.

          Try truncating it after merchant.mvc

          The default is the storefront anyhow.

          Vic Vega
          WolfPaw Computers
          Miva Merchant Hosting Specialists
          "Put the power of the pack to work for you!"(sm)
          Miva Standard Hosting Partner - OpenUI Premier Partner
          FREE MerchantHowTo.com Basic Tutorial Subscription with each hosting
          account! A $49 value!
          http://tinyurl.com/48nmu

          Ph: 1 (866) WOLFPAW
          www.wpcomp.com


          > -----Original Message-----
          > From: [email protected]
          > [mailto:[email protected]] On Behalf Of Chuck
          > Lasker - DoublePlus
          > Sent: Tuesday, April 19, 2005 4:30 PM
          > To: 'Miva List'
          > Subject: RE: [mru] OT: htaccess line? - Follow Up Question
          >
          >
          > Okay, cool. So with an htaccess file as follows:
          > --------------------
          > # -FrontPage-
          >
          > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
          >
          > <Limit GET POST>
          > order deny,allow
          > deny from all
          > allow from all
          > </Limit>
          > <Limit PUT DELETE>
          > order deny,allow
          > deny from all
          > </Limit>
          > AuthName www.newscienceideas.com
          > AuthUserFile /home/virtual/site6/fst/var/www/html/_vti_pvt/service.pwd
          > AuthGroupFile
          > /home/virtual/site6/fst/var/www/html/_vti_pvt/service.grp
          >
          > Redirect /index.html
          > <A HREF ="http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=S">http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=S</A>
          > FNT&Store_Code
          > =UT
          > ----------------
          >
          > Why would this code not work in there for SFL? I put it at
          > the top, and I get Forbidden errors at the site and in admin....
          >
          > RewriteEngine On
          > RewriteCond %{REQUEST_URI} !-s
          > RewriteRule ^page/(.*) /Merchant2/merchant.mvc?page=$1
          >
          > Chuck
          >
          >
          >
          >
          > > -----Original Message-----
          > > From: Remik - dotCOM designers [mailto:[email protected]]
          > > Sent: Tuesday, April 19, 2005 3:48 PM
          > > To: [email protected]; 'Miva List'
          > > Subject: Re: [mru] OT: htaccess line?
          > >
          > > It means you have FrontPage extensions installed on the
          > > server.... or at
          > > least they used to be there (disabling FP extensions does not
          > > change these
          > > default entries in .htaccess).
          > >
          > > IndexIgnore prevents viewing of files specified on that line
          > > using web
          > > browsers. On a properly configured server directory indexing
          > > should be
          > > turned off already, but FrontPage includes this line
          > > automatically when you
          > > install it on a domain.
          > >
          > > Remik Kolodziej
          > > dotCOM designers - Miva Premier Hosting Partner
          > > <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>
          > >
          > >
          > >
          > >
          > > ----- Original Message -----
          > > From: "Chuck Lasker - DoublePlus" <[email protected]>
          > > Sent: Tuesday, April 19, 2005 1:28 PM
          > > Subject: [mru] OT: htaccess line?
          > >
          > >
          > > > Can anyone tell me what this means in an .htaccess file?
          > > >
          > > > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
          > > >
          > > > Chuck Lasker
          > >
          > >
          > >
          >
          >

          Comment


            #6
            OT: htaccess line? - Follow Up Question



            Better yet, change the redirect just to:

            DirectoryIndex /Merchant2/merchant.mvc

            Vic Vega
            WolfPaw Computers
            Miva Merchant Hosting Specialists
            "Put the power of the pack to work for you!"(sm)
            Miva Standard Hosting Partner - OpenUI Premier Partner
            FREE MerchantHowTo.com Basic Tutorial Subscription with each hosting
            account! A $49 value!
            http://tinyurl.com/48nmu

            Ph: 1 (866) WOLFPAW
            www.wpcomp.com


            > -----Original Message-----
            > From: [email protected]
            > [mailto:[email protected]] On Behalf Of Chuck
            > Lasker - DoublePlus
            > Sent: Tuesday, April 19, 2005 4:30 PM
            > To: 'Miva List'
            > Subject: RE: [mru] OT: htaccess line? - Follow Up Question
            >
            >
            > Okay, cool. So with an htaccess file as follows:
            > --------------------
            > # -FrontPage-
            >
            > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
            >
            > <Limit GET POST>
            > order deny,allow
            > deny from all
            > allow from all
            > </Limit>
            > <Limit PUT DELETE>
            > order deny,allow
            > deny from all
            > </Limit>
            > AuthName www.newscienceideas.com
            > AuthUserFile /home/virtual/site6/fst/var/www/html/_vti_pvt/service.pwd
            > AuthGroupFile
            > /home/virtual/site6/fst/var/www/html/_vti_pvt/service.grp
            >
            > Redirect /index.html
            > <A HREF ="http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=S">http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=S</A>
            > FNT&Store_Code
            > =UT
            > ----------------
            >
            > Why would this code not work in there for SFL? I put it at
            > the top, and I get Forbidden errors at the site and in admin....
            >
            > RewriteEngine On
            > RewriteCond %{REQUEST_URI} !-s
            > RewriteRule ^page/(.*) /Merchant2/merchant.mvc?page=$1
            >
            > Chuck
            >
            >
            >
            >
            > > -----Original Message-----
            > > From: Remik - dotCOM designers [mailto:[email protected]]
            > > Sent: Tuesday, April 19, 2005 3:48 PM
            > > To: [email protected]; 'Miva List'
            > > Subject: Re: [mru] OT: htaccess line?
            > >
            > > It means you have FrontPage extensions installed on the
            > > server.... or at
            > > least they used to be there (disabling FP extensions does not
            > > change these
            > > default entries in .htaccess).
            > >
            > > IndexIgnore prevents viewing of files specified on that line
            > > using web
            > > browsers. On a properly configured server directory indexing
            > > should be
            > > turned off already, but FrontPage includes this line
            > > automatically when you
            > > install it on a domain.
            > >
            > > Remik Kolodziej
            > > dotCOM designers - Miva Premier Hosting Partner
            > > <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>
            > >
            > >
            > >
            > >
            > > ----- Original Message -----
            > > From: "Chuck Lasker - DoublePlus" <[email protected]>
            > > Sent: Tuesday, April 19, 2005 1:28 PM
            > > Subject: [mru] OT: htaccess line?
            > >
            > >
            > > > Can anyone tell me what this means in an .htaccess file?
            > > >
            > > > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
            > > >
            > > > Chuck Lasker
            > >
            > >
            > >
            >
            >

            Comment


              #7
              OT: htaccess line? - Follow Up Question



              You just discovered the pleasures of working with FrontPage and .htaccess -
              these two mix like oil and water. While most things can be still done in
              .htaccess, they will require making additional changes to make them work on
              sites that have FP extensions enabled. Sometimes it requires explicitly
              turning on a specific directive in .htaccess before you enter your changes,
              and sometimes it's as elaborate as having to reset file permissions and/or
              editing very specific files that FP generates in its various _vti_*
              directories. I'd suggest a good book on FP extensions and server
              administration, or living on MS Technet site for a while to learn all these
              little idiosyncrasies.

              Remik Kolodziej
              dotCOM designers - Miva Premier Hosting Partner
              <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>




              ----- Original Message -----
              From: "Chuck Lasker - DoublePlus" <[email protected]>
              Sent: Tuesday, April 19, 2005 2:29 PM
              Subject: RE: [mru] OT: htaccess line? - Follow Up Question


              > Okay, cool. So with an htaccess file as follows:
              > --------------------
              > # -FrontPage-
              >
              > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
              >
              > <Limit GET POST>
              > order deny,allow
              > deny from all
              > allow from all
              > </Limit>
              > <Limit PUT DELETE>
              > order deny,allow
              > deny from all
              > </Limit>
              > AuthName www.newscienceideas.com
              > AuthUserFile /home/virtual/site6/fst/var/www/html/_vti_pvt/service.pwd
              > AuthGroupFile /home/virtual/site6/fst/var/www/html/_vti_pvt/service.grp
              >
              > Redirect /index.html
              > <A HREF ="http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=SFNT&Store_Code">http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=SFNT&Store_Code</A>
              > =UT
              > ----------------
              >
              > Why would this code not work in there for SFL? I put it at the top, and I
              > get Forbidden errors at the site and in admin....
              >
              > RewriteEngine On
              > RewriteCond %{REQUEST_URI} !-s
              > RewriteRule ^page/(.*) /Merchant2/merchant.mvc?page=$1
              >
              > Chuck
              >
              >
              >
              >
              >> -----Original Message-----
              >> From: Remik - dotCOM designers [mailto:[email protected]]
              >> Sent: Tuesday, April 19, 2005 3:48 PM
              >> To: [email protected]; 'Miva List'
              >> Subject: Re: [mru] OT: htaccess line?
              >>
              >> It means you have FrontPage extensions installed on the
              >> server.... or at
              >> least they used to be there (disabling FP extensions does not
              >> change these
              >> default entries in .htaccess).
              >>
              >> IndexIgnore prevents viewing of files specified on that line
              >> using web
              >> browsers. On a properly configured server directory indexing
              >> should be
              >> turned off already, but FrontPage includes this line
              >> automatically when you
              >> install it on a domain.
              >>
              >> Remik Kolodziej
              >> dotCOM designers - Miva Premier Hosting Partner
              >> <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>
              >>
              >>
              >>
              >>
              >> ----- Original Message -----
              >> From: "Chuck Lasker - DoublePlus" <[email protected]>
              >> Sent: Tuesday, April 19, 2005 1:28 PM
              >> Subject: [mru] OT: htaccess line?
              >>
              >>
              >> > Can anyone tell me what this means in an .htaccess file?
              >> >
              >> > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
              >> >
              >> > Chuck Lasker



              Comment


                #8
                OT: htaccess line? - Follow Up Question



                I found out the site is no longer maintained with FrontPage, so I'll get
                them to get their host to get rid of the FrontPage extensions. Or change
                hosts....

                Thanks!

                Chuck

                > -----Original Message-----
                > From: Remik - dotCOM designers [mailto:[email protected]]
                > Sent: Tuesday, April 19, 2005 4:44 PM
                > To: [email protected]; 'Miva List'
                > Subject: Re: [mru] OT: htaccess line? - Follow Up Question
                >
                > You just discovered the pleasures of working with FrontPage
                > and .htaccess -
                > these two mix like oil and water. While most things can be
                > still done in
                > .htaccess, they will require making additional changes to
                > make them work on
                > sites that have FP extensions enabled. Sometimes it requires
                > explicitly
                > turning on a specific directive in .htaccess before you enter
                > your changes,
                > and sometimes it's as elaborate as having to reset file
                > permissions and/or
                > editing very specific files that FP generates in its various _vti_*
                > directories. I'd suggest a good book on FP extensions and server
                > administration, or living on MS Technet site for a while to
                > learn all these
                > little idiosyncrasies.
                >
                > Remik Kolodziej
                > dotCOM designers - Miva Premier Hosting Partner
                > <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>
                >
                >
                >
                >
                > ----- Original Message -----
                > From: "Chuck Lasker - DoublePlus" <[email protected]>
                > Sent: Tuesday, April 19, 2005 2:29 PM
                > Subject: RE: [mru] OT: htaccess line? - Follow Up Question
                >
                >
                > > Okay, cool. So with an htaccess file as follows:
                > > --------------------
                > > # -FrontPage-
                > >
                > > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
                > >
                > > <Limit GET POST>
                > > order deny,allow
                > > deny from all
                > > allow from all
                > > </Limit>
                > > <Limit PUT DELETE>
                > > order deny,allow
                > > deny from all
                > > </Limit>
                > > AuthName www.newscienceideas.com
                > > AuthUserFile
                > /home/virtual/site6/fst/var/www/html/_vti_pvt/service.pwd
                > > AuthGroupFile
                > /home/virtual/site6/fst/var/www/html/_vti_pvt/service.grp
                > >
                > > Redirect /index.html
                > >
                > <A HREF ="http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=S">http://www.newscienceideas.com/Merchant2/merchant.mvc?Screen=S</A>
                FNT&Store_Code
                > > =UT
                > > ----------------
                > >
                > > Why would this code not work in there for SFL? I put it at
                > the top, and I
                > > get Forbidden errors at the site and in admin....
                > >
                > > RewriteEngine On
                > > RewriteCond %{REQUEST_URI} !-s
                > > RewriteRule ^page/(.*) /Merchant2/merchant.mvc?page=$1
                > >
                > > Chuck
                > >
                > >
                > >
                > >
                > >> -----Original Message-----
                > >> From: Remik - dotCOM designers [mailto:[email protected]]
                > >> Sent: Tuesday, April 19, 2005 3:48 PM
                > >> To: [email protected]; 'Miva List'
                > >> Subject: Re: [mru] OT: htaccess line?
                > >>
                > >> It means you have FrontPage extensions installed on the
                > >> server.... or at
                > >> least they used to be there (disabling FP extensions does not
                > >> change these
                > >> default entries in .htaccess).
                > >>
                > >> IndexIgnore prevents viewing of files specified on that line
                > >> using web
                > >> browsers. On a properly configured server directory indexing
                > >> should be
                > >> turned off already, but FrontPage includes this line
                > >> automatically when you
                > >> install it on a domain.
                > >>
                > >> Remik Kolodziej
                > >> dotCOM designers - Miva Premier Hosting Partner
                > >> <A HREF ="http://www.dotcomdesigners.com - 888-321-6239">http://www.dotcomdesigners.com - 888-321-6239</A>
                > >>
                > >>
                > >>
                > >>
                > >> ----- Original Message -----
                > >> From: "Chuck Lasker - DoublePlus" <[email protected]>
                > >> Sent: Tuesday, April 19, 2005 1:28 PM
                > >> Subject: [mru] OT: htaccess line?
                > >>
                > >>
                > >> > Can anyone tell me what this means in an .htaccess file?
                > >> >
                > >> > IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
                > >> >
                > >> > Chuck Lasker
                >
                >
                >


                Comment

                Working...
                X