Drupal Internal Server Error 500
时间:2011-03-29 来源:kingQueenyun
我在本地测试网站完毕后,上传到空间,出现Internal Server Error 500,这样我只有关闭clean url,然后.htaccess才能起作用,才能实现301的跳转。可当我开启clean url,如果你使用的是drupal默认的.htaccess,那么就找不到页面。下面我简单地重写了下.htaccess,因为我只需要它实现301跳转。
原文出自:http://suyou.info/node/32
-
<IfModule mod_rewrite.c>RewriteEngine onRewriteBase /RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ index.php?q=$1 [L,QSA]</IfModule>相关阅读 更多 +