File: .htaccess

package info (click to toggle)
nodebox-web 1.9.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,904 kB
  • ctags: 1,602
  • sloc: python: 7,582; ansic: 581; xml: 239; makefile: 2
file content (25 lines) | stat: -rwxr-xr-x 741 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Redirect /docs/examples/temporary.xml http://feedparser.org/docs/examples/atom.xml
Redirect permanent /docs/examples/permanent.xml http://feedparser.org/docs/examples/atom.xml
Redirect gone /docs/examples/gone.xml

<Files "basic_auth.xml">
  AuthUserFile /home/mark/web/feedparser.org/docs/examples/.htpasswd_basic
  AuthName "BasicTest"
  AuthType Basic
  order deny,allow
  allow from all
  require valid-user
</Files>

<Files "digest_auth.xml">
  AuthDigestFile /home/mark/web/feedparser.org/docs/examples/.htpasswd_digest
  AuthName "DigestTest"
  AuthType Digest
  order deny,allow
  allow from all
  require valid-user
</Files>

<Files "http_base.xml">
  Header set Content-Location http://example.org/
</Files>