Forum Moderators: phranque
/birthday/flowers-dance
should be converted to
kg.php?c=birthday&g=flowers-dance
AND
this redirection should not be shown on browser (should be hidden from user and search engines)
is this possible.
RewriteEngine on
RewriteRule ^father(.*)$ ./kannada-greeting.php?g=$1 [L]
Here is what happens
Case 1.
/father-ji
it works fine as expected.
Case 2.
/father/ji
This spoils the page with css, images missing(as it considers father as a directory/folder.
Any work arounds?
I have tried RewriteRule ^father/(.*)$ ./kannada-greeting.php?g=$1 [L]
Which doesnt work either.
As for your redirects and rewrites, this other thread shows the full process, which you need to understand before making changes to your server configuration: [webmasterworld.com...]
You need the redirects as well as the rewrites, otherwise both URLs continue to work, and both will be indexed by search engines as Duplicate Content.