I'm installing doxWiki, and the webserver installation instructions assume root access to httpd.conf
-- my provider, 1and1, only allows access to .htaccess
Below is the doxWiki httpd.conf
sample
ServerAdmin YourName@YourMail.com
DocumentRoot "/home/doxWiki/htdocs"
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory "/home/doxWiki/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule alias_module>
Alias /images "/home/doxWiki/images"
ScriptAlias // "/home/doxWiki/"
</IfModule>
<Directory "/home/doxWiki">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
<Directory "/home/doxWiki/images">
AllowOverride None
Options Includes
Order allow,deny
Allow from all
</Directory>
What of the above can be converted to .htaccess
, and what cannot?
ServerAdmin := not Alias := rewrite rules ScriptAlias := not even sure what this is Directory sections := convertable?
I couldn't find any one source online, or in existing questions, that cover all the issues above. I edit rewrite rules so infrequently that I never remember the details from time to time....
I originally asked this at StackOverflow, but thought it might be more appropriate, here.