0

我想使用 .htaccess 将我的动态 URL 重定向到静态以实现 SEO 目的。网址如下所述:

  1. http://www.manpowersupplyfromnepal.com/index.php?page=home
  2. /index.php?page=about-us

等等

我想分别制作它们如下所述。

  1. http://www.manpowersupplyfromnepal.com/

  2. /关于我们

请用适当的解决方案回复我。我会很感激。

谢谢,

尼丁

4

1 回答 1

0

请看下面的代码它会帮助你请试试这个

RewriteCond %{REQUEST_URI} ^/index.php$
RewriteCond %{QUERY_STRING} ^page=home$
RewriteRule ^(.*)$  http://www.manpowersupplyfromnepal.com/home? [R=301,L]
RewriteCond %{REQUEST_URI} ^/index.php$
RewriteCond %{QUERY_STRING} ^page=about-us$
RewriteRule ^(.*)$  http://www.manpowersupplyfromnepal.com/about-us? [R=301,L]

选择

RewriteCond %{REQUEST_URI} ^/index\.php$
RewriteCond %{QUERY_STRING} ^page=about-us$
RewriteRule ^(.*)$  http://www.manpowersupplyfromnepal.com/about-us? [R=301,L]

这将永久重定向 URL,并且您将获得不带查询字符串的所需 URL

于 2013-06-10T13:42:05.097 回答