DarkDragonLord
New Member
- Messages
- 782
- Reaction score
- 0
- Points
- 0
Hello everyone!
Well, i need urgent a mod rewrite rule to my .htaccess!
So, instead of my link be:
www.raphaelddl.com/index.php?ddl=portfolio&lang=en&ports=videos
(Index using language English > Portfolio > Videos)
i want to be something near this:
www.raphaelddl.com/en/portfolio/videos
But one thing you must consider, since my website is multi language, my links always something like this:
This way it checks the lang array.
Even with mod rewrite, this will work?
Thanks
i'll pay credits for you
maybe something like 100 or near
Edit:
.
.
So, anyone know how make that? I'm kinda too busy with php to try make myself
Well, i need urgent a mod rewrite rule to my .htaccess!
So, instead of my link be:
www.raphaelddl.com/index.php?ddl=portfolio&lang=en&ports=videos
(Index using language English > Portfolio > Videos)
i want to be something near this:
www.raphaelddl.com/en/portfolio/videos
But one thing you must consider, since my website is multi language, my links always something like this:
PHP:
<?php
$default = 'en';
if (isset($_GET['lang']))
echo './main_'.$_GET['lang'].'.html';
else
echo $default;
?>
This way it checks the lang array.
Even with mod rewrite, this will work?
Thanks
i'll pay credits for you
maybe something like 100 or near
Edit:
.
.
So, anyone know how make that? I'm kinda too busy with php to try make myself
Last edited: