<![CDATA[ .htaccess redirect from domain to specific page (not working) - My Forums]]> https://forums.modx.com/thread/?thread=104860 <![CDATA[.htaccess redirect from domain to specific page (not working)]]> https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563835
I read a few posts about redirecting a domain to a specific page on a ModX website via the htaccess. I've tried a few different options but nothing seems to work, maybe I placed the rewrites in the wrong order(?). This is what I tried so far, the redirect lines start at line 49 ('# UK version'):

# MODX supports Friendly URLs via this .htaccess file. You must serve web
# pages via Apache with mod_rewrite to use this functionality, and you must
# change the file name from ht.access to .htaccess.
#
# Make sure RewriteBase points to the directory where you installed MODX.
RewriteRule ^.*[-/]s(\d+)-.*$ menusl/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^s(\d+)-.*$ menusl/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^o(\d+)[-/].*[-/]s(\d+)-.*$ menusl/index\.php?id=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^o(\d+)[-/]s(\d+)[-/].*$ menusl/index\.php?id=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^s(\d+)[-/].*[-/]o(\d+)[-/].*$ menusl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^s(\d+)[-/]o(\d+)[-/].*$ menusl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]s(\d+)[-/]o(\d+)[-/].*$ menusl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]s(\d+)[-/].*[-/]o(\d+)[-/].*$ menusl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]o(\d+)[-/].*[-/]s(\d+)[-/].*$ menusl/index\.php?id=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]o(\d+)[-/]s(\d+)[-/].*$ menusl/index\.php?id=$1-$2&%{QUERY_STRING} [L]

# E.g., "/modx" if your installation is in a "modx" subdirectory.
#
# You may choose to make your URLs non-case-sensitive by adding a NC directive
# to your rule: RewriteRule ^(.*)$ index.php?q=$1 [L,QSA,NC]

RewriteEngine On
RewriteBase /

# Rewrite www.domain.com -> domain.com -- used with SEO Strict URLs plugin
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^odetteorganiseert\.nl [NC]
RewriteRule (.*) http://odetteorganiseert.nl/$1 [R=301,L]


# or for the opposite domain.com -> www.domain.com use the following
# DO NOT USE BOTH
#
#RewriteCond %{HTTP_HOST} .
#RewriteCond %{HTTP_HOST} !^www\.example-domain-please-change\.com [NC]
#RewriteRule (.*) http://www.example-domain-please-change.com/$1 [R=301,L]


# Rewrite secure requests properly to prevent SSL cert warnings, e.g. prevent 
# https://www.domain.com when your cert only allows https://secure.domain.com
RewriteCond %{SERVER_PORT} !^443
RewriteRule (.*) https://odetteorganiseert.nl/$1 [R=301,L]

# The Friendly URLs part
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

# UK version
RewriteCond %{HTTP_HOST} ^conferenceoffice\.nl [NC,OR]
RewriteCond %{HTTP_HOST} ^www\.conferenceoffice\.nl [NC]
RewriteRule ^(.*)$ https://odetteorganiseert.nl/uk-version/$1 [L,R=301,NC]


# Make sure .htc files are served with the proper MIME type, which is critical
# for XP SP2. Un-comment if your host allows htaccess MIME type overrides.

#AddType text/x-component .htc



# If your server is not already configured as such, the following directive
# should be uncommented in order to set PHP's register_globals option to OFF.
# This closes a major security hole that is abused by most XSS (cross-site
# scripting) attacks. For more information: http://php.net/register_globals
#
# To verify that this option has been set to OFF, open the Manager and choose
# Reports -> System Info and then click the phpinfo() link. Do a Find on Page
# for "register_globals". The Local Value should be OFF. If the Master Value
# is OFF then you do not need this directive here.
#
# IF REGISTER_GLOBALS DIRECTIVE CAUSES 500 INTERNAL SERVER ERRORS :
#
# Your server does not allow PHP directives to be set via .htaccess. In that
# case you must make this change in your php.ini file instead. If you are
# using a commercial web host, contact the administrators for assistance in
# doing this. Not all servers allow local php.ini files, and they should
# include all PHP configurations (not just this one), or you will effectively
# reset everything to PHP defaults. Consult www.php.net for more detailed
# information about setting PHP directives.

#php_flag register_globals Off



# For servers that support output compression, you should pick up a bit of
# speed by un-commenting the following lines.

#php_flag zlib.output_compression On
#php_value zlib.output_compression_level 5



# The following directives stop screen flicker in IE on CSS rollovers. If
# needed, un-comment the following rules. When they're in place, you may have
# to do a force-refresh in order to see changes in your designs.

#ExpiresActive On
#ExpiresByType image/gif A2592000
#ExpiresByType image/jpeg A2592000
#ExpiresByType image/png A2592000
#BrowserMatch "MSIE" brokenvary=1
#BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
#BrowserMatch "Opera" !brokenvary
#SetEnvIf brokenvary 1 force-no-vary

]]>
applepi Jan 30, 2019, 09:54 AM https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563835
<![CDATA[Re: .htaccess redirect from domain to specific page (not working)]]> https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563873
Here's a handy htaccess tester you can use: https://htaccess.madewithlove.be/. It will show you exactly what's happening as the URL is processed.

BTW, I don't think the lines at the top are doing anything because the rewrite engine is not turned on at that point.

]]>
BobRay Jan 31, 2019, 08:49 PM https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563873
<![CDATA[Re: .htaccess redirect from domain to specific page (not working)]]> https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563853
Quote from: BobRay at Jan 30, 2019, 08:12 PM
Try putting it at line 29.
]]>
applepi Jan 31, 2019, 08:37 AM https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563853
<![CDATA[Re: .htaccess redirect from domain to specific page (not working)]]> https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563844 BobRay Jan 30, 2019, 08:12 PM https://forums.modx.com/thread/104860/htaccess-redirect-from-domain-to-specific-page-not-working#dis-post-563844