Found it !!
So, here I will try to explain how I have done it.
My website is configured like that : http://mywebsite.fr
On my site, I have a webpage in wich I post news with plugin News Manager, these page is /projets/
So when you go on these page you are on http://mywebsite.fr/projets/
And when you read a news, you are on http://mywebsite.fr/projets/newsnumber1
So, I made two differentes configurations, one for others pages, and one for projets page.
My configuration is for all pages except projets
The configuration for projets page is
And I did not forget to enable Fancy Url with News Manager of course.
That's all. Thanks for your great help guyz !
Just a last question, I do not remember if I have even do it. Would you know how to integrate news provided by news manager in sitemap.xml for google and others search engine indexation ?
See you.
So, here I will try to explain how I have done it.
My website is configured like that : http://mywebsite.fr
On my site, I have a webpage in wich I post news with plugin News Manager, these page is /projets/
So when you go on these page you are on http://mywebsite.fr/projets/
And when you read a news, you are on http://mywebsite.fr/projets/newsnumber1
So, I made two differentes configurations, one for others pages, and one for projets page.
My configuration is for all pages except projets
Code:
url.rewrite = (
"/([A-Za-z0-9_-]+)/?$" => "/?id=$1",
)
The configuration for projets page is
Code:
url.rewrite-once = (
"/projets/post/(.*)" => "/?id=projets&post=$1",
)
And I did not forget to enable Fancy Url with News Manager of course.
That's all. Thanks for your great help guyz !
Just a last question, I do not remember if I have even do it. Would you know how to integrate news provided by news manager in sitemap.xml for google and others search engine indexation ?
See you.