2009-11-13 190 views
1

我只是想問,如何將html後綴添加到我的網站使用htaccess的每個網址?如何添加URL後綴

像這樣的網址:

www.mysite.com/index.php?hello/world

應該成爲

www.mysite.com/index.php?hello/world。 html

回答

2
RewriteEngine On 

    RewriteCond %{HTTP_HOST} ^mydomain\.com$ [NC] 

    RewriteRule ^(.*)$ http://www.mydomain.com/$1\.html [R=301,L]