LuKreme wrote:
> On 6-Dec-2009, at 20:15, J. Bakshi wrote:
>
>> RewriteRule ^typo3$ - [L]
>> RewriteRule ^typo3/.*$ - [L]
>> ` ` `
>>
>> and now webdav has no problem with create/delete operation
>>
>
>
> One other thing, if you duplicate the RewriteCond above these rules, they
> should wo
On 6-Dec-2009, at 20:15, J. Bakshi wrote:
> RewriteRule ^typo3$ - [L]
> RewriteRule ^typo3/.*$ - [L]
> ` ` `
>
> and now webdav has no problem with create/delete operation
One other thing, if you duplicate the RewriteCond above these rules, they
should work as well.
something like:
Options +F
On 6-Dec-2009, at 20:15, J. Bakshi wrote:
> Though I have fond that creating a .htaccess or deleting it through webdav is
> not possible.
Usually apache is setup to refuse to serve .ht* files for security reasons. If
this is not the case, there's no reason the htaccess file should not be
avail
LuKreme wrote:
> On 3-Dec-2009, at 22:22, J. Bakshi wrote:
>
>
>> Options +FollowSymLinks
>>
>> RewriteEngine On
>> RewriteRule ^typo3$ - [L]
>> RewriteRule ^typo3/.*$ - [L]
>>
>> RewriteCond %{REQUEST_FILENAME} !-f
>> RewriteCond %{REQUEST_FILENAME} !-d
>> RewriteCond %{REQUEST_FILENAME} !-l
>>
On 3-Dec-2009, at 22:22, J. Bakshi wrote:
> Options +FollowSymLinks
>
> RewriteEngine On
> RewriteRule ^typo3$ - [L]
> RewriteRule ^typo3/.*$ - [L]
>
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteCond %{REQUEST_FILENAME} !-d
> RewriteCond %{REQUEST_FILENAME} !-l
>
> RewriteCond %{REQUEST_URI}
LuKreme wrote:
> On Dec 3, 2009, at 20:13, "J. Bakshi" wrote:
>
>> RewriteCond %{REQUEST_URI} !^webdav
>
> That's wrong.
>
> !^/webdav
>
> The / is part of the uri
Sorry for the mistake. I have corrected it but no luck :-( Here is my
complete .htacess once again
` ` `
Options +FollowSymLinks
R
On Dec 3, 2009, at 20:13, "J. Bakshi" wrote:
RewriteCond %{REQUEST_URI} !^webdav
That's wrong.
!^/webdav
The / is part of the uri
-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://http
LuKreme wrote:
> On 2-Dec-2009, at 22:36, J. Bakshi wrote:
>
>> RewriteEngine On
>> RewriteRule ^typo3$ - [L]
>> RewriteRule ^typo3/.*$ - [L]
>>
>
>
> I just went through this with wordpress. You have to exempt webdav from all
> the rewrites.
>
> On 25-Nov-2009, at 11:15, LuKreme wrote:
>
On 2-Dec-2009, at 22:36, J. Bakshi wrote:
> RewriteEngine On
> RewriteRule ^typo3$ - [L]
> RewriteRule ^typo3/.*$ - [L]
I just went through this with wordpress. You have to exempt webdav from all the
rewrites.
On 25-Nov-2009, at 11:15, LuKreme wrote:
> I modified the htaccess file hoping I coul