修改httpd.conf 追加Alias 后,能否不重启apache,能生效

修改httpd.conf 追加Alias 后,能否不重启apache,能生效

在做apache的虚拟主机中

每次追加一个虚拟目录home-1,需要追加

Alias /home-1 "/usr/local/apache/htdocs/docs/home-1"
<Directory "/usr/local/apache/htdocs/docs/home-1">
        php_flag register_globals On
        php_admin_value open_basedir /usr/local/apache/htdocs/docs/home-1
</Directory>

各位能否有什么办法不通过重启apache,而使之配置生效呢
hup
如果动到apache的httpd.conf的话,好像都需要重新加载才能生效的,当然了,你可以使用reload进行加载,也可以使用restart或stop后再start,其他的?好像都不行吧!
hup和reload都可以
apachectl    reload


Usage: /usr/local/apache/bin/httpd [-D name] [-d directory] [-f file]
                                   [-C "directive"] [-c "directive"]
                                   [-k start|restart|graceful|graceful-stop|stop]
                                   [-v] [-V] [-h] [-l] [-L] [-t] [-S]
Options:
  -D name            : define a name for use in <IfDefine name> directives
  -d directory       : specify an alternate initial ServerRoot
  -f file            : specify an alternate ServerConfigFile
  -C "directive"     : process directive before reading config files
  -c "directive"     : process directive after reading config files
  -e level           : show startup errors of level (see LogLevel)
  -E file            : log startup errors to file
  -v                 : show version number
  -V                 : show compile settings
  -h                 : list available command line options (this page)
  -l                 : list compiled in modules
  -L                 : list available configuration directives
  -t -D DUMP_VHOSTS  : show parsed settings (currently only vhost settings)
  -S                 : a synonym for -t -D DUMP_VHOSTS
  -t -D DUMP_MODULES : show all loaded modules
  -M                 : a synonym for -t -D DUMP_MODULES
  -t                 : run syntax check for config files


出现这样的问题???
httpd -k graceful