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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:44:56+00:00 2026-06-18T08:44:56+00:00

My main question is , for security reasons, I’d like to know if it’s

  • 0

My main question is, for security reasons, I’d like to know if it’s possible to virtually change the name (in a sense) of a website file using .htaccess. For instance, if I have a file /index.php and I want to make it such that calls for /mysite are redirected to /index.php, but I also want calls to /index.php to return as either an error 403 or 404. Is this possible? And if so, how could it be done?

Also, I’ve been searching for a full documentation on the .htaccess directive syntax, but I couldn’t find anything. My second question is, Does anyone know of a good generic reference of all the directives and their syntax? (I couldn’t even find one in w3schools)

  • 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-18T08:44:57+00:00Added an answer on June 18, 2026 at 8:44 am

    First I’ll start by saying w3schools doesn’t have particularly good references for anything. The Apache mod_rewrite documentation is really good, and I always go there first.

    The first part of your request is pretty straightforward as a rewrite. But before we get there, let’s start by preventing direct requests to index.php. In order to do this without messing up our other rules we will use the %{THE_REQUEST} variable to match index.php and forbid access.

    RewriteEngine On
    
    # If the request sent by the browser includes index.php...
    RewriteCond %{THE_REQUEST} index\.php
    # forbid access (403)
    RewriteRule ^. - [F]
    
    # Then you just need a generic rule to rewrite /mysite into index.php
    RewriteRule ^mysite index.php [L]
    

    We need the first part using THE_REQUEST to avoid causing conflicts with the second part rewriting into index.php.

    If you want to serve a 404 to make it look like index.php doesn’t even exist, replace the [F] with [R=404,L]

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

Sidebar

Related Questions

The title is the main question. The exact scenario (I am 'using namespace std;'):
I am using Struts2, Spring 2 and Junit 4.5. My main question is, whether
I know this sounds like a broad question but I can narrow it down
Main question is what are the implications of allowing the this keyword to be
My main question is given a feature centroid, how can I draw it in
My main question is : Is there a good practice to serve binary files
I guess my main question is, will this always work as long as I
This was the main question posed by Greg Wilson's bits of evidence presentation. I'm
Here's the main question I guess : Is there a .NET way to get
first of all, my main question: What are some good troubleshooting techniques when you

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.