2016-11-21 14 views
3

私は数日の間、無駄にするために、ワードプレスのブログをApache仮想ホストにインストールしようとしてきました。各仮想ホストがそれぞれのindex.htmlまたはindex.phpを読み込むと、仮想ホストの設定はうまく動作します。 Wordpressのインストールでのみ、私は何の応答も得ません。私のconfファイルは、私は何のmod_rewriteが有効になって、私はよく分からない持っているブログは、ディレクトリ/ var/www /の例に位置し、私の.htaccessファイルがWordpressが読み込みを拒否しています

# BEGIN WordPress 
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase/
RewriteRule ^index\.php$ - [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L] 
</IfModule> 

# END WordPress 

のように見えます

<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 example.com 
    ServerAlias www.example.com 
    ServerAdmin [email protected] 
    DocumentRoot /var/www/example 

    <Directory /var/www/example/> 
      Options Indexes FollowSymLinks MultiViews 
      AllowOverride All 
      Order allow,deny 
      allow from all 
    </Directory> 

    # 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> 

のように見えます問題はです。 Apacheのエラーログをチェックすると何も表示されず、アクセスログには常に301の戻り値が表示されます。

+0

WordPressのホームページを開こうとするとどうなりますか? –

+0

@DusanBajicホームページは決して解決しません。数分後にタイムアウトします。 – user3423909

+0

まず、基本を確認する必要があります。 .htaccessを削除してサイトのルートフォルダに単純なindex.htmlを作成すると、それを開くことはできますか? –

答えて

0

これは/ var/www/exampleディレクトリの.htaccessを削除し、confファイルの行を削除することで解決しました。

関連する問題