ApacheRewrite: Unterschied zwischen den Versionen

Aus crazylinux.de
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
 
Keine Bearbeitungszusammenfassung
Zeile 3: Zeile 3:
  RewriteEngine On
  RewriteEngine On
  RewriteRule ^/downloads/(.*) /getFile.php?filename=$1 [NE]
  RewriteRule ^/downloads/(.*) /getFile.php?filename=$1 [NE]


mod_rewrite will translate the url, and the browser (and the user) won't know the difference.
mod_rewrite will translate the url, and the browser (and the user) won't know the difference.
Keywords: apache,mod_rewrite,file,rewrite,url,save,saving,htaccess

Version vom 24. November 2005, 22:37 Uhr

Another solution for getting the browser to use the right filename for saving is to use mod_rewrite to hide the fact that you are using a script at all. Either in the httpd.conf or a .htaccess file, include something like the following:

RewriteEngine On
RewriteRule ^/downloads/(.*) /getFile.php?filename=$1 [NE]

mod_rewrite will translate the url, and the browser (and the user) won't know the difference. Keywords: apache,mod_rewrite,file,rewrite,url,save,saving,htaccess