如果永久链接为postname
,则无法找到,而网址中没有index.php
。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
我是wordpress的初学者。当永久链接设置变为postname
时,我的网站无法找到问题。
Home
页面仍然存在,但点击其他链接,它无法找到正确的页面并向我显示未找到的404(不是来自wordpress默认404,它的apache2回)
删除我的网址上的index.php
是我的第一个目标。尽管我尝试修改.htaccess
或重新启动apache2
,但它无法正常工作。
目前,我将结构设置为index.php/%post_id%/%postname%
,它会起作用。
我应该怎么做我的终端或修改我的wordpress文件夹中的内容?