.htaccess url重写并删除%20

时间:2014-08-13 13:56:31

标签: php apache .htaccess mod-rewrite url-rewriting

嗨,我在重写时很新。我有一个托管我的网站的Apache主机,我需要重写网址,使它看起来比现在更好。

所以我有这个链接http://www.kalah.co.za/content.php?page=Civil%20Tactical%20Training,我希望它看起来像http://www.kalah.co.za/Civil-Tactical-Training.html

现在我可以用这段代码做第一点

RewriteEngine On
RewriteRule ^([^/]*)\.html$ /content.php?page=$1 [L]

但我还需要删除或替换 - 东西。我不知道什么是更友好的SEO和任何建议和意见/建议将不胜感激。

PS:在重写方面,Windows服务器和apache服务器的.htaccess也不同吗?

1 个答案:

答案 0 :(得分:3)

您可以在根目录中使用这些规则.htaccess:

RewriteEngine On
RewriteBase /

# external redirect from actual URL to pretty one (remove query string)
RewriteCond %{THE_REQUEST} \s/+content\.php\?page=([^\s&]+) [NC]
RewriteRule ^ %1? [R=302,L,NE]

# convert all space (%20) to hyphen
RewriteRule "^(\S*) +(\S* .*)$" $1-$2 [N,NE]
RewriteRule "^(\S*) (\S*)$" $1-$2 [L,R=302,NE]

# rewrite rule to call actual PHP handler
RewriteRule ^([^./]+)\.html$ content.php?page=$1 [L,QSA,NC]