我正在設計我的第一個博客網站,並想知道如何實現SEO友好的網址編碼。SEO友好的URL編碼
目前,我有這樣的URL:
但我真正想要的是這樣的:
莫非http://www.mywebsite.com/2013/11/09/this-is-my-article-title/
有人請點在這個方向上給我一個很好的教程來完成這個或者可能解釋我如何做到這一點。我在這裏搜索和谷歌還沒有發現任何遠程幫助。
# Enables rewrite
RewriteEngine On
# Only continue if it's not a directory, file or link
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
# rewrite to file
RewriteRule ^(.*)$ index.php?page=$1
然後爲http://yourwebsite.com/homepage
,你會得到index.php?page=homepage
的請求,以便在PHP中,你可以閱讀:
請閱讀[URL重寫](https://www.google.co.uk/search?q=url+rewriting)。要查看StackOverflow如何生成其友好URL,請查看[此帖子](http://stackoverflow.com/a/25486/2765666)。 –