Gustavo Duenas wrote:
do you mind to share with me how to use the mod_rewrite...is on the as3
, in the javascript or the html?

It is a module for the Apache group http server. So, it is a server side module to perform regex replacements on the url before the server parses it further.

Many people uses a hack that it provides, I recommend against the hack, because it makes the task even more confusing than it already is. The issue is simple, the server supports directory specific configuration files (commonly called .htaccess due to their default file name). But that file is loaded after the url is parsed. However, url rewriting needs to be done before that happens. So, it should be impossible to change the url at that stage, since it has already been parsed. But there is a hack to circumvent this.

To avoid the hack, simply don't do any url rewriting in directory specific configuration files. Instead use the real configuration file for the server.
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to