Hi All
If i added this to a custom_template would it work for .htaccess files in ibays for the likes of wordpress,gallery,mambo
and any other cms software that uses .htaccess directives.
Taken from the appache website
http://httpd.apache.org/docs/1.3/mod/core.html#allowoverridelook for <Directory> directive
If multiple (non-regular expression) directory sections match the directory (or its parents) containing a document, then the directives are applied in the order of shortest match first, interspersed with the directives from the .htaccess files. For example, with
<Directory /> " i take it this is the default
AllowOverride None " for sme apache.conf
</Directory>
<Directory /home/*>
AllowOverride FileInfo
</Directory>
for access to the document /home/web/dir/doc.html the steps are:
* Apply directive AllowOverride None (disabling .htaccess files).
* Apply directive AllowOverride FileInfo (for directory /home/web).
* Apply any FileInfo directives in /home/web/.htaccess
----------------------------------------------------------------------------------
Would this work if i put it in a custom template
<Directory /home/e-smith/files/ibays/your_ibay_name/html/*
AllowOverride FileInfo
</Directory>
have not tried it yet wanted to pass it by more knowledged people than myself still learning.
Using sme7.0pre.