Difference between revisions of "Apache Webserver"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
__FORCETOC__ | __FORCETOC__ | ||
== Redirects for Browser with .htaccess == | == Redirects for Browser with .htaccess == | ||
+ | |||
+ | Redirect Browser by Language to other Websites | ||
+ | Create a .htaccess at the Webspace and enter: | ||
+ | <pre> | ||
+ | <IfModule mod_rewrite.c> | ||
+ | RewriteEngine On | ||
+ | RewriteCond %{HTTP:Accept-Language} ^de [NC] | ||
+ | RewriteRule ^$ /linux-support-deutsch [L,R=301] | ||
+ | RewriteRule ^$ /linux-support-english [L,R=301] | ||
+ | </IfModule> | ||
+ | </pre> | ||
+ | This will redir German and International Users to two | ||
+ | different Sites. | ||
== Block Access to Subfolders wp-includes of Wordpress == | == Block Access to Subfolders wp-includes of Wordpress == |
Revision as of 14:37, 22 May 2017
Redirects for Browser with .htaccess
Redirect Browser by Language to other Websites Create a .htaccess at the Webspace and enter:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP:Accept-Language} ^de [NC] RewriteRule ^$ /linux-support-deutsch [L,R=301] RewriteRule ^$ /linux-support-english [L,R=301] </IfModule>
This will redir German and International Users to two different Sites.