0

我有这样的php链接

echo "<h4><a href='$bname_d'>$bname_d</a></h4>'

如果$bname_d = Creativeartbd 托管公司,则显示 url

http://mysite.com/Creativeartbd host company (2 space in this url)

那么我如何用 php/.htaccess 用破折号替换这个空间?

目前我使用以下 .htaccess 规则

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /businesspage.php?page=$1 [L]

谢谢你的帮助。

4

1 回答 1

1

通过这个传递 url <?php $bname_d = str_replace(' ','-',$bname_d); ?> ,它将用“-”替换空格

于 2013-08-05T18:00:25.077 回答