如何配置Apache rewrite重定向

avatar
作者
猴君
阅读量:0

配置Apache Rewrite重定向可以帮助您实现URL的美化、跳转或隐藏实际路径等需求。以下是配置Apache Rewrite重定向的基本步骤:

  1. 确保已安装并启用Apache的mod_rewrite模块。在Apache配置文件(通常是httpd.confapache2.conf)中,找到以下行并删除前面的注释符号(#):

    LoadModule rewrite_module modules/mod_rewrite.so 

    然后重启Apache服务器以应用更改。

  2. 在Apache配置文件或站点配置文件中,找到或创建一个<Directory>块,用于存放您的Rewrite规则。例如:

    <Directory "/var/www/html"> 
  3. <Directory>块内,添加以下代码以启用Rewrite引擎:

    RewriteEngine On 
  4. 现在,您可以添加具体的Rewrite规则。以下是一些常见的示例:

    • http://example.com/old-page重定向到http://example.com/new-page

      RewriteRule ^old-page$ /new-page [R=301,L] 
    • 将带参数的URL(如http://example.com/article.php?id=123)重写到不带参数的URL(如http://example.com/article/123):

      RewriteRule ^article\.php\?id=([0-9]+)$ /article/$1 [R=301,L] 
    • 如果请求的URI不存在,则将请求重定向到默认页面(如index.html):

      RewriteCond %{REQUEST_FILENAME} !-f RewriteRule . /index.html [L] 
  5. 保存更改并重启Apache服务器以应用新的Rewrite规则。

请注意,这些示例仅用于演示目的。您需要根据自己的需求调整Rewrite规则。在修改配置文件之前,建议备份原始文件并在开发环境中进行测试。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!