我想将旧的URL重定向到Laravel中的新URL示例:domain.com/path/any-page to domain.com/any-page什么将是更好的选择,我可以使用.htaccess或手动定义每个路由重定向。
domain.com/path/any-page to domain.com/any-page
.htaccess
pbwdgjma1#
如果您想使用控制器或中间件进行重定向,则可以使用redirect('DOMAIN_TO_REDIRECT')。现在,当您想使用use.htaccess时,只需将这一行添加到htaccess.Redirect 301 /your_route https://example.net/another_route中即可
redirect('DOMAIN_TO_REDIRECT')
Redirect 301 /your_route https://example.net/another_route
1条答案
按热度按时间pbwdgjma1#
如果您想使用控制器或中间件进行重定向,则可以使用
redirect('DOMAIN_TO_REDIRECT')
。现在,当您想使用use.htaccess时,只需将这一行添加到htaccess.
Redirect 301 /your_route https://example.net/another_route
中即可