Redirection rules
Apr 26, 2014 1:38 pm by eera5607
Apr 26, 2014 1:38 pm by eera5607
Hi,
I upgraded from Pro to Enterprise version and added the rule: RewriteRule ^([a-z]{2}|zh-CN|zh-TW)/(.*)$ http://$1.domain.com/$2 [R=301,L,QSA]
But somehow the the redirection from old Pro URLS (e.g. robustiana.com/es/example) don't redirect to (es.robustiana.com/example)
This is the content of .htaccess
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
##
## Puede ser comentado si provoca errores, véanse las notas anteriores.
Options +FollowSymLinks
## Mod_rewrite in use.
RewriteEngine On
## Inicio - Reglas de reescritura para bloquear algunos exploits comunes.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## Final - Rewrite rules to block out some common exploits.
## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
## End - Custom redirects
##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##
# RewriteBase /
## Inicio - Joomla! Sección core SEF.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## Final - Joomla! Sección core SEF.
RewriteRule ^([a-z]{2}|zh-CN|zh-TW)/(.*)$ http://$1.domain.com/$2 [R=301,L,QSA]
Thank you.
Re: Redirection rules
Apr 26, 2014 1:40 pm by Edvard
Apr 26, 2014 1:40 pm by Edvard
Please place it next line of RewriteEngine On line.
And do not forget to replace domain.com with your domain name.
Thanks!
Re: Redirection rules
Apr 26, 2014 2:55 pm by eera5607
Apr 26, 2014 2:55 pm by eera5607
Ups! Sorry. It seems to work now!
Thanks.
Re: Redirection rules
Apr 26, 2014 6:57 pm by Edvard
Apr 26, 2014 6:57 pm by Edvard
Thanks!
SIMILAR TOPICS
Go back to original language after redirection? dnt knw how | Oct 15, 2018 8:30 am | Replies: 1 | Post by: LesterCrawford |
Go back to original language after redirection | Sep 19, 2017 6:03 pm | Replies: 1 | Post by: spheresocial |
Stop sub domain redirection to main domain | Apr 12, 2016 7:45 pm | Replies: 3 | Post by: xperthere |
Redirection for not duplicate | Aug 20, 2016 8:48 am | Replies: 9 | Post by: yule |
Need updated htaccess rules for Windows IIS web.config | May 24, 2016 2:03 pm | Replies: 5 | Post by: mjbradley85 |