我目前正在使用Adobe Business Catalyst并寻找.htaccess代码将/ home重定向到/.
目前使用以下代码:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^54\.252\.148\.183
RewriteRule (.*) http://envirofrontier.com.au/$1 [R=301,L]
答案 0 :(得分:0)
您可以在.htaccess
文件中使用此功能:
Options +FollowSymLinks
RewriteEngine On
# For specific IP address(es), redirect the incoming request to /envirofrontier.com.au.
RewriteCond %{HTTP_HOST} ^54\.252\.148\.183
RewriteRule (.*) http://envirofrontier.com.au/$1 [R=301,L]
# Redirect /home to /
RewriteRule ^home/?$ / [R=302,L]
如果您对重定向感到满意,可以将R=302
更改为R=301
。
将来,请在询问Stack Overflow之前显示您的尝试。