0
我在http://tallytree.com上有一個比較新的wordpress安裝。我試圖改變固定鏈接,使其更好。但是,當我使用爲什麼我需要用「/index.php」開始我的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不必是網址?