-2

我想将一组特定的 Url 重定向回我网站的索引页面,但在浏览器地址栏中保留它们的 url。我将如何mod_rewrite在 htaccess 文件中实现这一目标?

当前使用的代码:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    # Custom rewrite below
    RewriteRule ^references/(.*) / [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>

请注意,这是一个 WP 安装。

4

1 回答 1

1

把它放在你文档根目录的 htaccess 文件中,最好是上面你可能已经有的规则:

RewriteEngine On

# for each of these "urls" do this
RewriteRule ^/?url_you_want_to_point_to_index / [L]

假设您没有查询字符串参数(a 之后的名称/值对?),这应该就是您所需要的。

于 2012-09-16T18:12:18.407 回答