2013-05-15 172 views
-1

我開發在WordPress網站,我試圖寫一個簡單的重寫規則(似乎所有這些文件非常簡單)。如何寫重寫規則

我需要改變http://www.mysite.com/fitness/wp-content/themes/fitness/favorites.phphttp://www.mysite.com/fitness/favorites健身是我的主目錄。

我曾嘗試以下方式在我的.htaccess文件,但他們都拋出404錯誤:

1. RewriteRule ^favorites$ /fitness/wp-content/themes/fitness/favorites.php 

2. RewriteRule ^/favorites/$ /fitness/wp-content/themes/fitness/favorites.php 

3. RewriteRule ^favorite\.php$ - [L] 
    RewriteRule . /fitness/wp-content/themes/fitness/favorites.php [L] 

我在做什麼錯?

+0

使用靜態頁面模板... –

+0

以及如何調用該模板?什麼應該是href標籤? – Preetam

+0

如果你確實閱讀文檔這將是甜的...... http://www.google.com/search?q=wordpress+page+template –

回答

0

試試看看這個代碼。這將簡單地將舊網址重定向到新網址。

Options +FollowSymlinks 
RewriteEngine on 
rewriterule ^fitness/wp-content/themes/fitness/favorites.php(.*)$ http://www.mysite.com/fitness/favorites$1 [r=301,nc]