0

我希望能够将潜在客户名称添加到我网站上的链接中,例如。

mydomainname.com/postname/客户名称

没有网站抛出 404 错误。

有没有一种简单的方法可以做到这一点?

我要做的大多数网站都是基于wordpress的。

4

1 回答 1

1

我用这个:我的 htaccess 文件

 Options +FollowSymLinks  
    RewriteEngine On  

    RewriteCond %{SCRIPT_FILENAME} !-d  
    RewriteCond %{SCRIPT_FILENAME} !-f  

    RewriteRule ^.*$ ./index.php  

这是 index.php

<?php  
  #remove the directory path we don't want 
  $request  = str_replace("mydomainname.com/", "", $_SERVER['REQUEST_URI']); 

  #split the path by '/'   
  $params     = split("/", $request);  
?>  

将参数作为数组获取后。我希望我能帮上忙!玩得开心!

于 2013-04-22T11:39:37.340 回答