SEO friendly URL's on Zend Framework
Hello,
I am very concern about SEO things for some websites and i am wondering what can do ZF for us. This is in fact the main reason for which i didn't switched to ZF MVC totally... Because i didn't found out a workaround for Controller side...
One problem i consider important is URL format.
Sample: Rather than focusing over URL format as: /news/view/73
....
I personally prefer to use a totally different format as: /This-is-the-news-title-19_73
where:
* "This-is-the-news-title" is news title
* 19 is page identifier (each page having his own id); i think standard Zf format (controller-view) is not always the best approach
* 73 is news identifier...
Why ? Because:
* is not a good idea to use a file into a directory, a file directly into root is ranked better by SE than one file under /onedire/subdir/subdir/filename
* using a filename format URL friendly helps on SE rankings: "This-is-the-news-title"
* because using "news" word means "news" is getting SEO exposure, and i don't want this, instead a number is filtered by SE so doesn't get exposure
So, i am wondering if there are any possibilities to work with controller side this way, more SEO friendly... Because standard controller doesn't help much...
|