[ PHPXref.com ] [ Generated: Sun Jul 20 20:38:18 2008 ] [ Tikiwiki 1.9.2 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/doc/ -> htaccess.readme (source)

   1  Filename: htaccess.readme
   2  Written by Dennis Heltzel, 7/23/03
   3  
   4    The htaccess file in this directory can be moved to .htaccess in the tiki docroot with this command:
   5  
   6  mv htaccess ../.htaccess
   7  
   8  On Apache, this will use rewrite rules to allow for short URL's, but it can cause some errors and issues, so you have to move it yourself, that way it counts as "self-inflicted".
   9  
  10  If you implement this on RedHat 8 or 9, which uses Apache 2.0, it may refuse access to the entire tiki site and log errors. If you want to use it anyway, edit your httpd.conf file (vi /etc/httpd/conf/httpd.conf) and change this:
  11  
  12  <Directory />
  13      Options FollowSymLinks
  14      AllowOverride AuthConfig 
  15  </Directory>
  16  
  17  to this:
  18  
  19  <Directory />
  20      Options FollowSymLinks
  21      AllowOverride AuthConfig FileInfo
  22  </Directory>
  23  
  24  or in your virtual host setup:
  25  
  26  <Directory /path/to/hosting/space>
  27      Options FollowSymLinks
  28      AllowOverride AuthConfig FileInfo
  29  </Directory>


[ Powered by PHPXref - Served by Debian GNU/Linux ]