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 8306541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:21:07+00:00 2026-06-08T18:21:07+00:00

OK, I’m pants at rewrite rules in .htaccess files! My desired scenario is (using

  • 0

OK, I’m pants at rewrite rules in .htaccess files!

My desired scenario is (using the URL http://doma.in/ as an example):

  • First check to see if an index.html file exists in the /public sub-dir; if it does, serve it
    • If it did not; serve (rewrite to) index.php

To expand on my example, say we requested the URL http://doma.in/js/foobar.js:

  • First check to see if an foobar.js file exists in the /public/js sub-dir; if it does, serve it
    • If it did not; serve (rewrite to) index.php?controller=js%2Ffoobar.js

That would cover static files but I also need URLs like http://doma.in/foo:

  • First check to see if an foo file exists in the /public sub-dir; if it does, serve it
    • If it did not; serve (rewrite to) index.php?controller=foo

And a URL http://doma.in/foo/bar:

  • We can assume the file foo/bar does not exists in the /public sub-dir as files can’t be named like that.
    • So serve (rewrite to) index.php?controller=foo&action=bar

I’m sure if this complicated (for me) bit is covered then I can work query-strings into the occasion too; so http://doma.in/foo/bar/foo/bar would serve index.php?controller=foo&action=bar&querystring=foo%2Fbar.

I’d also like to make sure that a trailing slash is handled the same as if a trailing slash was omitted, for example: http://doma.in/foo/bar/foo/bar and http://doma.in/foo/bar/foo/bar/

I’ll handle 404s from within my app as if the file did not exist, it would redirect to index.php which does exist – I’m happy with this unless you’ve a better solution 🙂

I really hope all this makes sense as I’ve been looking to find a solution to this scenario all day now and this is all I have:

Options +FollowSymLinks

RewriteEngine on

RewriteBase /

#RewriteBase /prompt-v3/
#RewriteCond %{REQUEST_URI} ^/prompt-v3/(.*)$

RewriteCond $1 !^public
RewriteRule ^(.*)$ public/$1 [R]

The commented-out lines deal with a sub-dir when on a remote host. So far I can redirect to the /public sub-dir if the file exists there and that’s about it.

Thank you everyone for your help!

  • 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-06-08T18:21:08+00:00Added an answer on June 8, 2026 at 6:21 pm
    Options +FollowSymLinks
    
    RewriteEngine on
    
    RewriteBase /
    #RewriteBase /sub-dir/
    #RewriteCond %{REQUEST_URI} ^/sub-dir/(.*)$
    
    RewriteRule ^index.html$ $1 [L,R=301]
    
    RewriteCond $1 !^public
    RewriteCond $1 !^lib
    RewriteRule ^(.*)$ public/$1 [L]
    
    RewriteCond $1 ^public/$
    RewriteCond %{REQUEST_FILENAME}/index.html !-f
    RewriteRule ^(.*)$ lib/bootstrap.php [L]
    
    RewriteCond $1 !^public/$
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond $1 ^public/(.*)$
    RewriteRule ^(.*)$ lib/bootstrap.php?path=%1 [L]
    

    This will look for an index.html file in the public directory and if it does not exist rewrite the URL to lib/bootstrap.php. it in fact checks for any request as a static file in the public directory first and deals with canonicalisation too.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
We're building an app, our first using Rails 3, and we're having to build
I have thousands of HTML files to process using Groovy/Java and I need to
I'm making a simple page using Google Maps API 3. My first. One marker
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am using JSon response to parse title,date content and thumbnail images and place
I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
I am using the SimpleRSS gem to parse a WordPress RSS feed. The only
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

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.