make 301 redirect from old asp page to wordpress php [closed]

倾然丶 夕夏残阳落幕 提交于 2019-12-24 16:39:00

问题


can anyone help me make a 301 redirect from an asp page: http://www.maribowl.dk/bowling.asp?Page=Caf%E9+Menu to my new wordpress site: http://www.maribowl.dk/cafemenu/

can this be done in an .htaccess file on the wordpress site or where should I paste it in?


回答1:


Place this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On


RewriteCond %{QUERY_STRING} ^Page=St\%E6vne [NC]
RewriteRule ^Tournaments\.asp$ http://www.maribowl.dk/julestaevne-2013/? [B,R=301,L,NE]


来源:https://stackoverflow.com/questions/20033855/make-301-redirect-from-old-asp-page-to-wordpress-php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!