views:

22

answers:

1

hi guy its my first time here and my english sukcs, sorry... i have a problem with my .htaccess, i'm trying to redirect a page with a safe url using this code:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^noticias/pagina/([0-9]+)/?$ news.php?id=$1 [NC,L]

but my swf files called by nes.php does not open...

can someone help me? who can i fix this problem?

my swf file are in the same folder as my file news.php....

+1  A: 

This is probably an issue with wrong references to your resources. Since you’re now using a different URL (/noticias/pagina/…), relative URL paths are now resolved from this base instead of your old (/news.php). A reference rodape.swf is now resolved to /noticias/pagina/rodape.swf.

Try to reference your SWF file with an absolute URL path:

<object type="application/x-shockwave-flash" data="/rodape.swf" width="960" height="45">
Gumbo
thanks that words great :D
José Rodrigues
one more time sorry for my english :S
José Rodrigues
mark this as Answer if it helped. Welcome to SO. :)
jun