我剛安裝了一個wordpress博客,它將作爲一個靜態網站的獨立博客。博客完成後,當我查看它全部顯示正常....直到一個固定鏈接(查看單個帖子)被點擊。點擊後,用戶被重定向到主頁。我相信htaccess文件造成這種情況。您可以通過查看博客網站來試試這個:http://nathantrotter.com/blog/htaccess預防Wordpress永久鏈接
這是我的htaccess文件(從該網站的根目錄,wp博客目錄沒有)...我是否需要創建另一行使博客永久鏈接工作?如果是這樣,什麼?
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^admin$ admin/index.php
RewriteRule ^products/([A-Za-z0-9_-]+)$ /index.php?p=products&metal=$1
RewriteRule ^services/([A-Za-z0-9_-]+)$ /index.php?p=services&sub=$1
RewriteRule ^about/([A-Za-z0-9_-]+)$ /index.php?p=about&sub=$1
RewriteRule ^facilities/([A-Za-z0-9_-]+)$ /index.php?p=facilities&sub=$1
RewriteRule ^press/([0-9]+)/([A-Za-z0-9_-]+)$ /viewPress.php?id=$1
RewriteRule ^([A-Za-z0-9_-]+)$ /index.php?p=$1
就像添加一個新的自定義帖子類型,重置WP永久鏈接修復了這個...不知道爲什麼,但它的工作! – JCHASE11 2012-08-08 13:15:45