使用正则表达式自定义 htaccess 301 重定向
Custom htaccess 301 redirect with regexp
我想从源移动页面 url:
http://mysite.fr/topic/15530-fermeture-de-lapplication-sur-run/
目标 url:
http://mysite.fr/index.php?p=discussion/15530/fermeture-de-lapplication-sur-run/
我试过了没有成功:
RedirectMatch 301 ^/topic/([0-9]+)-(.+?)$ /index.php?p=discussion//
我错过了什么?
提前致谢。
有关信息,此原始重定向正在运行:
Redirect 301 /topic/15530-fermeture-de-lapplication-sur-run/ /index.php?p=discussion/15530/fermeture-de-lapplication-sur-run/
试试这个:
RedirectMatch 301 ^/topic/([0-9]+)-([^/]+/)$
我想从源移动页面 url:
http://mysite.fr/topic/15530-fermeture-de-lapplication-sur-run/
目标 url:
http://mysite.fr/index.php?p=discussion/15530/fermeture-de-lapplication-sur-run/
我试过了没有成功:
RedirectMatch 301 ^/topic/([0-9]+)-(.+?)$ /index.php?p=discussion//
我错过了什么? 提前致谢。
有关信息,此原始重定向正在运行:
Redirect 301 /topic/15530-fermeture-de-lapplication-sur-run/ /index.php?p=discussion/15530/fermeture-de-lapplication-sur-run/
试试这个:
RedirectMatch 301 ^/topic/([0-9]+)-([^/]+/)$