我在OVH有一个域名链接到我的EC2实例,如下所示: www.mysite.com - > 12.34.56.78/folder/ 因此,每当我在地址栏中输入“www.mysite.com”时,我最终都会登录我的网站,但网址已被替换为“12.34.56.78/folder /".
我目前正在尝试在服务器的根目录中调整.htaccess文件,但它似乎不起作用...... 以下是文件的内容:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.mysite.com$
RewriteRule ^(.*)$ http://www.mysite.com/ [L]
也许我没有找到正确的解决方案......无论如何,如果你能帮助我,我将不胜感激! 欢呼声,
答案 0 :(得分:1)
你遗漏了我在下面添加的一些内容
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.mysite\.com$
#$1 will include the original URI in the redirect, 301 for permanent
RewriteRule ^(.*)$ http://www.mysite.com/$1 [L,R=301]