2012-08-08 76 views
0

我剛安裝了一個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 
+0

就像添加一個新的自定義帖子類型,重置WP永久鏈接修復了這個...不知道爲什麼,但它的工作! – JCHASE11 2012-08-08 13:15:45

回答

-1

這不是一個htaccess的問題。只需進入WP永久鏈接設置頁面並更新現有永久鏈接。這解決了它。

+0

這改變了你的htaccess ...你只是找到一種方法來正確地更新htaccess。也許你的wp目錄中的htaccess。 – nalply 2012-08-08 21:57:33

+0

這不能解決它我試着對同一個問題 – 2013-01-12 10:25:04