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/
嘗試將重定向301只rewriteBase線以下。 – Howli 2014-09-20 14:06:40
我試過了,它仍然給我整個網站的500錯誤 – user3718071 2014-09-20 15:56:12