跳转到内容

今天花了一些时间弄了一下url重写

因为本站现在两个域名都有,默认是www.kingway.anyxhost.com,而我想都指到k68.org上来。网络上一些文章真是看得我滴汗,我恐怕他们自己都没有测试过~就把文章发出来,害我走弯路。

最后弄好是这样:

~/public_html/.htaccess
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)\.org$
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ http://www.k68.org/$1/ [R=302]
RewriteCond %{HTTP_HOST} ^(.*)nyxhost\.com$
RewriteRule ^.*$ http://www.k68.org/move.html [R=302]

然后在index.php里做url跳转到/drupal/去。html或者javascript跳转的话google抓不到。url重写真是个好东西。