我只是想問,如何將html後綴添加到我的網站使用htaccess的每個網址?如何添加URL後綴
像這樣的網址:
www.mysite.com/index.php?hello/world
應該成爲
www.mysite.com/index.php?hello/world。 html
我只是想問,如何將html後綴添加到我的網站使用htaccess的每個網址?如何添加URL後綴
像這樣的網址:
www.mysite.com/index.php?hello/world
應該成爲
www.mysite.com/index.php?hello/world。 html
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mydomain\.com$ [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1\.html [R=301,L]
另一種方法是打開MultiViews。只需將以下行添加到目錄(或httpd.conf)中的.htaccess
文件中即可。請注意,Options All
不會打開MultiView,您需要明確地打開它。
Options +MultiViews
見http://httpd.apache.org/docs/2.0/en/content-negotiation.html的多視圖節於它的設置選項更多信息更多的信息和http://httpd.apache.org/docs/2.0/en/mod/core.html#options。