Problème with Human-friendly URLs
Notice: This thread is very old.
- fan2misa
- Member | 6
Hi everybody.
I have a problem with my URLs. I would URL like this :
http://localhost/mywebsite/www/blog/page/1
http://localhost/mywebsite/www/blog/page/2
http://localhost/mywebsite/www/blog/page/2
But I have this URLs :
http://localhost/mywebsite/www/blog?page=1
http://localhost/mywebsite/www/blog?page=2
http://localhost/mywebsite/www/blog?page=3
And in my router, I have this :
$router[] = new Route('blog', 'Frontend:Blog:index');
$router[] = new Route('blog/page/<page \d+>', 'Frontend:Blog:index');
Can you help me for it please ?