2014-09-20 96 views
0

我想讓我的301重定向在Wordpress中工作。我在之前的Wordpress網站上完成了這個任務。這是我目前正在生成的500錯誤頁面,當我檢查主網站不僅僅是重定向。301重定向在.htacess文件中產生500錯誤頁面

感謝您的幫助!

# 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 

Redirect 301 /images/kids%20menu.pdf http://ww2.landonwinery.com/bistro/bistro-kids-menu/ 
Redirect 301 /images/landon%20dinner.pdf http://ww2.landonwinery.com/bistro/bistro-dinner-menu/ 
Redirect 301 /images/landon%20dinner%202014.pdf http://ww2.landonwinery.com/bistro/bistro-dinner-menu/ 
Redirect 301 /images/landon%20lunch%202014.pdf http://ww2.landonwinery.com/bistro/bistro-lunch-menu/ 
+1

嘗試將重定向301只rewriteBase線以下。 – Howli 2014-09-20 14:06:40

+0

我試過了,它仍然給我整個網站的500錯誤 – user3718071 2014-09-20 15:56:12

回答

0

嘗試改變整個Rediret 301規則

RewriteRule ^/thefile.html$ /yourdirectory/thefile.html [R=301,L] 

有進一步結賬一看here ..

+0

不知道我是否需要編輯你給我的東西或只是粘貼它。我不熟悉htacess編輯。這是我在我的文件中。 (這也包括一些其他的插件信息和所有的重定向)http://ww2.landonwinery.com/wp-content/Redirects%202.txt – user3718071 2014-09-20 17:04:56