Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
htaccess redirect to subdir
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- htaccess redirect to subdir
htaccess redirect to subdir
30-06-2014 10:01 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I have the following code in my .htaccess file located in my /public folder
RewriteEngine on
RewriteCond %{HTTP:Host} ^(?:www.solareclipse2015.org.uk)?$
RewriteCond %{REQUEST_URI} !^/wordpress/
RewriteRule ^(.*) /wordpress/$1 [NC,L,NS]
Its working fine when www.solareclipse2015.org.uk is entered in a browser, however http://solareclipse2015.org.uk (without the w's) is not redirecting. Does anybody know how I can fix this?
Regards
RewriteEngine on
RewriteCond %{HTTP:Host} ^(?:www.solareclipse2015.org.uk)?$
RewriteCond %{REQUEST_URI} !^/wordpress/
RewriteRule ^(.*) /wordpress/$1 [NC,L,NS]
Its working fine when www.solareclipse2015.org.uk is entered in a browser, however http://solareclipse2015.org.uk (without the w's) is not redirecting. Does anybody know how I can fix this?
Regards
Message 1 of 3
(3,849 Views)
2 REPLIES 2
Re: htaccess redirect to subdir
01-07-2014 12:08 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
That .htaccess code checks for either the complete www.domain or an empty host string
Adapting this one, based on Gabe's post here, should meet your needs. This makes any subdomain optional.
Adapting this one, based on Gabe's post here, should meet your needs. This makes any subdomain optional.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^([^.]+\.)?yourdomain\.co\.uk$ [NC]
RewriteCond %{REQUEST_URI} !^/yoursite/
RewriteRule (.*) /yoursite/$1
David
Message 2 of 3
(386 Views)
Re: htaccess redirect to subdir
01-07-2014 12:18 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
That works! Grea thanks

Message 3 of 3
(386 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- htaccess redirect to subdir