ApacheRewrite
Aus CrazyLinux
Inhalt |
1 internal redirect
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:
RewriteRule ^/downloads/(.*) /getFile.php?filename=$1 [NE]
mod_rewrite will translate the url, and the browser (and the user) won't know the difference (SEO-Urls)
2 external redirect
eg. redirect http://crazylinux.de/wiki/TAR to http://crazylinux.de/TARthe browser will see the difference
3 Redirect visitor by domain name
In some cases the same web site is accessible by different addresses, like domain.com, www.domain.com, www.domain2.com and we want to redirect it to one address.RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R,L]
In this case the requested URL http://domain.com/foo.html would redirected to the URL http://www.domain.com/foo.html.
4 Force SSL-Redirect (for special directory)
How to redirect http-traffic automatically to https
#RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{HTTPS} off
#for a special directory
RewriteRule ^/administrator(.*)$ https://%{SERVER_NAME}/administrator$1 [R,L]
#or for the whole server
RewriteRule ^/(.*)$ https://%{SERVER_NAME}/$1 [R,L]
5 Redirect all requests to a file (e.g. for maintenance)
found on http://syslog.warten.de/2008/10/redirect-aller-webseiten-auf-e.html
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/offline\.php$
RewriteRule (^$|\.(html|php)$) http://www.example.com/offline.php [L]
</IfModule>
6 Links
http://www.widexl.com/scripts/documentation/mod_rewrite.html
Keywords: apache,mod_rewrite,file,rewrite,url,save,saving,htaccess,ssl,redirect,http,https,httpd.conf,443,80,seo



