无法使用php / .htaccess设置好的URL

时间:2014-08-03 09:33:35

标签: php .htaccess url-rewriting seo

我在我的php网站上设置好网址时遇到问题,希望你们能在这里帮助我。

现在这样的实际网址如下: http://www.domain.com/product.php?op=showm&name=the-slug&id=id

我希望它看起来像这样: http://www.domain.com/products/the-slug/id甚至更好,没有身份证。

感谢任何帮助,非常感谢!

干杯

1 个答案:

答案 0 :(得分:3)

你想要的是来自mod rewrite发电机的帮助。这是一个很好的。 http://www.generateit.net/mod-rewrite/index.php

以下是您可以尝试添加到.htaccess文件的内容:

RewriteEngine On
RewriteRule ^products/([^/]*)/([^/]*)$ /product.php?op=showm&name=$1&id=$2 [L]

原始网址: http://www.domain.com/product.php?op=showm&name=the-slug&id=id

重写的网址: http://www.domain.com/products/the-slug/id