Thursday 07 September 2006 6:49:11 am
I hava access to make .htaccess This is my .htaccess in /subdomain/webdav
RewriteEngine on
RewriteRule !^index\.php.* - [C]
RewriteRule .* /index.php?/$1
DirectoryIndex index.php
This is my index.php in /subdomain/webdav
<?php
chdir ("../../www");
include("webdav.php");
?>
|