I have fixed the problem
part of the root .htaccess code
Code
RewriteCond %{REQUEST_URI} /([^/]+)/([^/]+)
RewriteRule .* index.php?index=%1&v1=%2 [END,L]
RewriteCond %{REQUEST_URI} /([^/]+)
RewriteRule ^(.*)$ index.php?index=%1 [END,L]
already had the END flag, that wasnt the problem
I had turned off sub folder RewriteEngine to off
where was localised the iframe used as content
So, I had to setup an .htaccess for this one as well
with about the same rules, as the parameters sent to that iframe were kept unformated (ex: /index/foo/bar instead of ?index=index&a=foo&b=bar)
Now I just have to 301 redirect any
?index=index&a=foo&b=bar
to /index/foo/bar
in order to avoid duplicate content
so it gets internally rewrote back to ?index=index&a=foo&b=bar
So finaly google (and others) will crawl my nice addresses,
so I could finaly turn on progressive content showing (or whatever how we call that when the first print is all PHP done server side without ajax or browser js, and then further navigation being done witj js ajax and inside iframes, if those are available)
just right enough for the crawlers
So yeah 1st english aint my first language and 2nd im neither a daylife programming worker anywhere nor do I have any real school degree in that
thus if you want me to explain furthermore anything and clarify something, just let me know,
pretty sure I could help out someone out there!This post was edited by Beejee on Aug 16 2013 12:18pm