搜尋

首頁  >  問答  >  主體

apache+tomcat出現Forbidden

apache中設定wap.luger.me指向tomcat中的 wap專案。訪問出現Forbidden

You don't have permission to access / on this server.

這也不是權限的問題吧 tomcat是用luger用戶起的 apache用root使用者起來的。請問這個問題怎麼解決。謝謝。

黄舟黄舟2752 天前553

全部回覆(2)我來回復

  • 天蓬老师

    天蓬老师2017-05-16 17:05:00

    剛好也遇到了這個問題,出現這個問題的原因有很多,解決這個問題的方法根據你apache的版本不同,解決方法也不同,如果你是最近安裝的話,那麼apache的版本應該是2.4的。它配置虛擬目錄跟2.2不同。
    你仔細看看這篇文章:http://linux.cn/article-3164-1.html
    這個是在apache預設目錄設定的,如果虛擬目錄不是建在/var/www的話,那麼要如下這樣設定:

    ServerName 127.0.0.1:80
    <Directory /home/hehongwei/wwwroot/>
            Options Indexes FollowSymLinks
            AllowOverride None
            Require all granted
    </Directory>
    <VirtualHost *:80>
            # The ServerName directive sets the request scheme, hostname and port that
            # the server uses to identify itself. This is used when creating
            # redirection URLs. In the context of virtual hosts, the ServerName
            # specifies what hostname must appear in the request's Host: header to
            # match this virtual host. For the default virtual host (this file) this
            # value is not decisive as it is used as a last resort host regardless.
            # However, you must set it for any further virtual host explicitly.
            #ServerName www.example.com
            ServerName unixmen1.local
            ServerAlias www.unixmen1.local
            ServerAdmin webmaster@localhost
            DocumentRoot /home/hehongwei/wwwroot
    
    
            # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
            # error, crit, alert, emerg.
            # It is also possible to configure the loglevel for particular
            # modules, e.g.
            #LogLevel info ssl:warn
    
            ErrorLog ${APACHE_LOG_DIR}/error.log
            CustomLog ${APACHE_LOG_DIR}/access.log combined
    
    
            # For most configuration files from conf-available/, which are
            # enabled or disabled at a global level, it is possible to
            # include a line for only one particular virtual host. For example the
            # following line enables the CGI configuration for this host only
            # after it has been globally disabled with "a2disconf".
            #Include conf-available/serve-cgi-bin.conf
    </VirtualHost>
    

    回覆
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-16 17:05:00

    You don't have permission to access / on this server.

    沒有權限存取根目錄

    應該是設定檔寫錯了, 寫成了這樣? Directory "/"

    回覆
    0
  • 取消回覆