Good morning,
I am building a new website and i would like to make the urls SEO friendly. The folder structure is as follow:
/index.php <-- first page
/frame.php <-- page wrapper which includes all the modules
/modules <-- All the modules
/modules/en/module-name/index.php
/modules/en/module-name/page2.php
/modules/en/module-name/page3.php
/modules/en/module-name-2/index.php
...
How can i make a .htaccess mod rewrite that allows me to visit the next urls to go to the pages above, and keep the structure the same for new urls?
So i would like to go to:
http://www.url.com/en/module-name/ === http://www.url.com/frame.php?page=en/module-name/index.php
or
http://www.url.com/en/module-name/page3 === http://www.url.com/frame.php?page=en/module-name/page3.php
etc
I have multiple domain LTD's so i prefer to not include the domain name Is this possible?
Thanks for everyones help!