我正在本地使用Ubuntu 16.04 LTS机器和apache2服务器。在转到Ubuntu之前,我开始在Windows 10上开发该网站。
我现在遇到了这个问题:
当我将Permalinks设置为“Post name”时,服务器找不到除首页以外的所有页面。
顺便说一下,当我转到Ubuntu时,我也更改了网站的url。然而,我在将站点移动到远程服务器时做了类似的更改,没有任何问题。
我的htaccess是可写的,如下所示:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /nuritzurgil.co.il/
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /nuritzurgil.co.il/index.php [L]
</IfModule>