我在http://tallytree.com上安装了一个相对较新的 wordpress 。我今天尝试更改永久链接以使其更好。但是,当我使用
/%postname%/
作为永久链接并应用。Wordpress 在我博客的根目录中将其写入 .htaccess :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
现在,当我单击博客上的帖子标题时,我收到 apache 404 错误。我继续将永久链接更改为这个自定义结构:
/index.php/%postname%/
现在它起作用了。但是我的网址中有一个index.php,例如: http ://tallytree.com/index.php/comparing-a-few-force-directed-layout-implimentations/
如何设置永久链接,以便 index.php 不必在 URL 中?