在 Ubuntu 18.04 上的 AWS 中安装 Let's encrypt 证书后,我在 Wordpress 中遇到错误。
如何解决这个问题?
仅用于博客的 .htaccess 示例文件我正在使用 Wordpress,正在加载 Wordpress 索引页面但帖子页面显示 404 错误
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
Run Code Online (Sandbox Code Playgroud)