相続、親が弱ってきたら銀行の預金は親の面倒を見ているものが全て解約して管理すべきである、銀行は解約させない!!

wordpress apache2 設定 ubuntu 16.04

WordPress

サイト全体にリダイレクトを適用する

# vi /etc/apache2/apache2.conf
...
<Directory /var/www/>
        Options Indexes FollowSymLinks
#       AllowOverride None
        AllowOverride All
        Require all granted
</Directory>
...

WordPressのパーマリンク機能を利用できるようにします

# a2enmod rewrite

wordpress.confの設定

# cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/wordpress.conf
# vi /etc/apache2/sites-available/wordpress.conf
...
    ServerAdmin ckenko25@gmail.com
        DocumentRoot /var/www/wordpress/
        ServerName ckenko25.jp
        ServerAlias www.ckenko25.jp

        <Directory /var/www/wordpress/>
            Options FollowSymLinks
        </Directory>
...

構文エラーがないことを確認

# apache2ctl configtest

Apacheを再起動

# systemctl restart apache2
WordPress
スポンサーリンク
シェアする
ふじやんをフォローする
スポンサーリンク

コメント