如何将htaccess / mod_rewrite用于搜索引擎友好URL?

时间:2012-05-17 15:53:39

标签: .htaccess mod-rewrite

我安装了一个互惠脚本。在脚本安装文本中,他们编写如下:

Reciprocal脚本生成表单页面

http://www.your-domain.com/myfolder/partners.php?page=x

(其中x是数字)

可以使用Apache的mod_rewrite生成格式为

的搜索引擎友好页面

示例:http://www.your-domain.com/myfolder/pagex.html(其中x是一个数字)。

要做到这一点,请确保您的托管公司提供mod_rewrite支持(几乎所有Linux主机都有它) 在上面的步骤2中,还修改$ urlrewrite = false;到$ urlrewrite = true;

现在,我正在使用Linuk托管,并且Godaddy托管启用了Apache Mod-rewrite。我想更改以下路径

/reciprocallinks/partners.php?page=1

/ reciprocallinks /第1页

任何人都可以帮忙吗?我在.htaccess文件中要写什么?

我已经按照脚本的config.php中的指示更改了第2步。

我不知道在.htaccess文件中写什么?

请帮忙。

1 个答案:

答案 0 :(得分:0)

你写这个:

RewriteEngine on
RewriteCond %{QUERY_STRING} page=(\d+)
RewriteRule reciprocallinks/partners.php reciprocallinks/page%1? [L,R]