仅永久链接普通选项可让帖子在Wordpress上更新或保存

时间:2019-04-02 16:32:17

标签: wordpress apache2

在全新的Wordpress安装中,如果永久链接选项设置为“普通”,则我只能保存和更新帖子和页面。 尝试更新时,显示红色标签“更新失败”

服务器是Apache2安装。

我遵守了文档中列出的所有要求:https://codex.wordpress.org/Using_Permalinks#Using_.22Pretty.22_permalinks

设置了FollowSimLynks和AllowOverride。

使用“ a2enmod rewrite”触发重写模块。 .htaccess存在,由“ www-data”所有,我尝试过777权限进行检查,当在仪表板中设置了永久链接选项时,它会被编辑(我也会确认“永久链接结构已更新。”确认)...

我的“ /etc/apache2/sites-enabled/000-default.conf”看起来像:

<VirtualHost *:80>
    ServerName example.com
    ServerAdmin webmaster@localhost
    Redirect permanent / https://example.com/
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:80>
    ServerName blog.example.com
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/html/blog
    <Directory />
            Options FollowSymLinks
            AllowOverride FileInfo
    </Directory>
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined    
</VirtualHost>
<VirtualHost *:8019>
    <Location />
            Require ip x.x.x.x/24
    </Location>
    ServerName example.com
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/html2/phpmyadmin
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>    

我在做什么错了?

0 个答案:

没有答案