gpt4 book ai didi

.htaccess - Htaccess 重定向

转载 作者:行者123 更新时间:2023-12-03 22:21:32 26 4
gpt4 key购买 nike

我在设置 htaccess 重定向时遇到问题。

我需要重定向以下 URL:

neemoil.com.au [OR]
www.neemoil.com.au

neemoil.com.au/shop
我也希望它重定向:
neemoil.com.au/shop/*

neemoil.com.au/*
任何人都可以帮忙吗?

最佳答案

您所要求的将使客户端永远循环。

neemoil.com.au/shop 
#would be redirected to
neemoil.com.au/
#which in turn would be redirected to
neemoil.com.au/shop
#and it would keep on looping...
neemoil.com.au/
neemoil.com.au/shop

您可以像这样使用 htaccess 重定向:

如果它不是文件名,也不是目录,并且请求 URI 是 shop OR pay OR 等...将其重定向到您的地址...
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (shop|pay|secure|etc)
RewriteRule ^(.*)$ www.neemoil.com.au [R=301,L]

关于.htaccess - Htaccess 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1501732/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com