Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7501989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T20:43:05+00:00 2026-05-29T20:43:05+00:00

We have our site running on HTTPS. Is there a way to accept HTTP

  • 0

We have our site running on HTTPS. Is there a way to accept HTTP request for URLs containing /public/? For all other HTTP requests they should be redirected to HTTPS.

I have RoR application running on apache + passenger.

EDIT

Since the assets (/public/) requests will explicitly be on HTTP, how about creating another VHOST to handle HTTP requests. And for any requests other than /public/ directly could be redirected to HTTPS? If we can go this way how can we set this up in VHOST for HTTP?

EDIT 2

I am sorry, I should have been elaborated this in first place. Here is our setup. There two separate applications. One is running on HTTPS (S) and other on HTTP (P). The app P fetches data (a full HTML page, call it page) from S and render to client. The CSS file used in page is located on ‘S’ so I need to HTTPS in CSS link. I want to use HTTP instead to refer the CSS.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T20:43:06+00:00Added an answer on May 29, 2026 at 8:43 pm

    You can use mod_rewrite and place a .htaccess file with the below contents in your DocumentRoot.

    Options +FollowSymLinks -MultiViews -Indexes
    RewriteEngine on
    RewriteBase /
    
    RewriteCond %{ENV:REDIRECT_STATUS} 200
    RewriteRule ^ - [L]
    
    Rewritecond %{REQUEST_URI} .*/public/.* [NC]
    RewriteCond %{HTTPS} on
    RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    Rewritecond %{REQUEST_URI} !.*/public/.* [NC]
    RewriteCond %{HTTPS} off
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    

    NameVirtualHost *:80
    
    Listen 80
    Listen 443
    
    <VirtualHost *:80>
    ServerAdmin username@somesite.com
    DocumentRoot /pathto/DocumentRoot
    ServerName domain.com
    
    ErrorLog path/to/your-error_log
    CustomLog path/to/your-access_log common
    
    RewriteEngine on
    RewriteBase /
    
    Rewritecond %{REQUEST_URI} !.*/public/.*$ [NC]
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    </VirtualHost>
    
    
    <VirtualHost *:443>
    ServerAdmin username@somesite.com
    DocumentRoot /pathto/DocumentRoot
    ServerName domain.com
    
    ErrorLog path/to/your-error_log
    CustomLog path/to/your-access_log common
    
    RewriteEngine on
    RewriteBase /
    Rewritecond %{REQUEST_URI} .*/public/.*$ [NC]
    RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    #All the other directives pertaining to SSL add below
    
    </VirtualHost>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Our site is running ASP.NET 1.1, and I need to have ASP.NET 2.0 running
I have Selenium running under Cruise Control to test our site once a day.
We have an issue for our intranet site that is running in our local
We have some HTTP handlers specified in our web.config. When we were running this
We have a semi-weird issue for our site. Consistently, from 1 anonymous* user the
We have set a fixed limit on the filesize of uploads on our site
Have just started using Google Chrome , and noticed in parts of our site,
I have a rather complicated deploy setup for our Drupal site that is a
Post-release, I have made one small change to one form in our development site
At one of our client's site we have the following topology of BizTalk 2006

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.