如何在apache中从一个URL重定向到另一个URL

时间:2015-10-01 10:08:20

标签: apache httpd.conf

如何在apache中从一个URL重定向到另一个URL? 在文件httpd.conf ..

我需要做以下事情: - 用户打开网站“server.com” - 用户自动被重定向到“app.server.com”

我怎么能成功?

1 个答案:

答案 0 :(得分:0)

在.htacces文件中输入此

<p id="rowscount"></p>
<table id="myTable">

  <tr>
    <td>One</td>
    <td>Two</td>
  </tr>
  <tr>
    <td>One</td>
    <td>Two</td>
  </tr>

</table>

RewriteEngine on RewriteCond %{HTTP_HOST} ^server\.com$ [NC] RewriteRule ^(.*)$ http://app.server.com/$1 [R=301,L] 中保留RewriteCond %{HTTP_HOST} ^server\.com$ [NC]并且不要将其替换为\.非常重要,因为.是转义点。