I have made my own custom php framework which implements MVC design pattern. In it, all URLs are constructed like this
mysite.com/index.php?route=controller/function/parameters/go/here mysite.com/index.php?route=products/shirts/99
vb
I have put in place htaccess to remove index.php?route= part from URLs to make them more SEF making them appear like this:
mysite.com/controller/function/parameters/go/here mysite.com/products/shirts/99
Ben sadece bu yüzden gibi her URL'nin sonunda bir sonek eklemek istiyorum:
mysite.com/controller/function/parameters/go/here.html mysite.com/products/shirts/99.html
Probably htaccess can be put to use for acheiving that or possibly some other solutions.
Herhangi bir fikir lütfen?
Şimdiden teşekkürler.