2012-06-15 81 views
1

我有一個網站,通過以下鏈接我可以從.htacces中只爲單個頁面刪除.html嗎?

  • www.mydomain.com/NiceUrl1.html
  • www.mydomain.com/ blog.html
  • www.mydomain.com/ AnotherNiceUrl.html

什麼.htaccess重寫規則,我應該應用來實現以下結果嗎?

  • www.mydomain.com/NiceUrl1.html
  • www.mydomain.com/ 博客
  • www.mydomain.com/AnotherNiceUrl.html

回答

1
RewriteEngine On 
RewriteRule ^blog\.html$ /blog [L,R=301] 
RewriteRule ^blog$ blog.html 

應工作。第二行確保任何blog.html訪問得到一個301 - Moved Permanently HTTP頭,並因此自動打開/blog。第三行使/blog指向服務器上的/blog.html

相關問題