我在我的树莓皮上安装了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