Welcome Guest, Not a member yet? Register   Sign In
htaccess and /public_html/
#2

[eluser]jedd[/eluser]
I think on later versions of Apache (are you using apache - you didn't actually mention what web server you're using - this is probably important information if you're asking how to reconfigure a web server Wink you need the userdir module.

You might find there are some config sections in your apache config directories that are either commented out, or in a sub-directory of 'available' rather than 'enabled' mods.

This is probably moot if you don't have access to the server's primary configuration, as you can't just put an .htaccess file in a directory that Apache doesn't use, and hope that it'll stumble across it.

On my Debian box, the config for userdir looks like this. It, of course, assumes that users home directories are under /home/

Code:
UserDir public_html
        UserDir disabled root

        <Directory /home/ASTERISK-REMOVED-BY-FORUM/public_html>
                AllowOverride FileInfo AuthConfig Limit Indexes
                # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
                Options MultiViews Indexes FollowSymLinks IncludesNoExec
                <Limit GET POST OPTIONS>
                        Order allow,deny
                        Allow from all
                </Limit>
                <LimitExcept GET POST OPTIONS>
                        Order deny,allow
                        Deny from all
                </LimitExcept>
        </Directory>


Messages In This Thread
htaccess and /public_html/ - by El Forum - 03-30-2009, 05:08 AM
htaccess and /public_html/ - by El Forum - 03-30-2009, 05:18 AM
htaccess and /public_html/ - by El Forum - 03-30-2009, 05:27 AM
htaccess and /public_html/ - by El Forum - 03-30-2009, 05:41 AM
htaccess and /public_html/ - by El Forum - 03-30-2009, 05:45 AM
htaccess and /public_html/ - by El Forum - 03-30-2009, 11:04 AM
htaccess and /public_html/ - by El Forum - 03-30-2009, 12:32 PM
htaccess and /public_html/ - by El Forum - 03-30-2009, 12:45 PM



Theme © iAndrew 2016 - Forum software by © MyBB