Safe_mode und mod_rewrite

user_001

Registered User
Hallo,

wäre es möglich Safe_mode und mod_rewrite für einzelene Kunden über httpd-spezial, wie folgt freizuschlaten:
Code:
<Directory "/home/www/web4/html">
AllowOverride All
php_admin_flag safe_mode On
Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>

wann werden die Änderungen wirskam?

wie könnte ich apache manueill neustraten?


Danke
 
hier mal die Wichtigsten apache Befehle


/etc/init.d/apache2 restart = Startet den indianer Neu
/etc/init.d/apache2 stop = Stopt den indianer
/etc/init.d/apache2 start = Startet Ihn
Und das hier kannste alles machen

start - start httpd

startssl - start httpd with -DSSL

stop - stop httpd (sendign SIGTERM to parent)

try-restart - stop httpd and if this succeeds (i.e. if it was running before), start it again.

status - check whether httpd is running

restart - stop httpd if running; start httpd

restart-hup - restart httpd if running by sending SIGHUP,or start if not running

reload|graceful - do a graceful restart by sending a SIGUSR1 or start if not running

configtest - do a configuration syntax test

extreme-configtest - try to run httpd as nobody

probe - probe for the necessity of a reload, give out the argument which is required for a reload.

full-server-status - dump a full status screen; requires lynx or w3m and mod_status enabled

server-status - dump a short status screen; requires lynx or w3m and mod_status enable

help - this screen
 
Last edited by a moderator:
Hallo!
Ein AllowOverride Options sollte doch langen, oder? Mit AllowOverride All wäre ich vorsichtig.

mfG
Thorsten
 
Thorsten said:
Hallo!
Ein AllowOverride Options sollte doch langen, oder?
Für mod_rewrite über .htaccess-Dateien braucht man afaik zumindest noch AllowOverride FileInfo.
 
Back
Top