Raspberry PI上的LetsEncrypt WordPress-很好的url‘s Give 404,带HTTPS,http工作

时间:2016-03-05 作者:mezzomix

我在我的树莓皮上安装了WordPress,并使用LetsEncrypt来保护它。HTTPS链接将与Post ID永久链接一起使用。当我把permalinks换成其他东西时,他们会返回404。

这是我的。htaccess文件。如果你还需要什么,请告诉我。我真的被难住了。

10 # BEGIN WordPress
 11 <IfModule mod_rewrite.c>
 12 RewriteEngine On
 13 RewriteBase /
 14 RewriteRule ^index\\.php$ - [L]
 15 RewriteCond %{REQUEST_FILENAME} !-f
 16 RewriteCond %{REQUEST_FILENAME} !-d
 17 RewriteRule . /index.php [L]
 18 </IfModule>
 19 
 20 # END WordPress

1 个回复
SO网友:mezzomix

我已经解决了冲突。

在默认ssl文件中,我更改了以下内容:

<Directory /var/www/example.com/>    # added full directory path                                                            
  Options FollowSymLinks                                                      
  AllowOverride All                  # change None to ALL                                              
</Directory>

相关推荐

将重写规则直接添加到.htaccess文件

我想添加一个简单的重写规则RewriteRule ^apply\\/? https://docs.google.com/forms/d/e/1FAIpQLSf5IrOhg0E_NAGZnOvMuaXhU80sio8bukaWVBkb87eEOa9kTw/viewform [L] 我的。htaccess文件如下# BEGIN WordPress # The directives (lines) between "BEGIN WordPress" and "EN