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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:15:54+00:00 2026-05-31T11:15:54+00:00

I have successfully coded URL redirection/rewriting, however, the whole thing seems to be kind

  • 0

I have successfully coded URL redirection/rewriting, however, the whole thing seems to be kind of loose and unreliable and it looks like the server doesn’t in fact even ‘rewrite’.

My goal is to rewrite all URLs in the format
http://www.mydomain.com/venues/Venue_Name to
http://www.mydomain.com/venueview.php?id=### .

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^venues/(.*)$ venueview.php?url=$1 [QSA,L]
</IfModule>

This part works, however, the “(.*)$” part seems to be too loose as it allows just everything to be used. It should be restricted to letters, digits and “-“, “_”.
Also, after rewriting (?), the address bar in the browser displays the venueview.php URL which I think isn’t the idea of the whole thing, of course I would also like to have my URLs indexed by search engines in the ‘nice’ format instead of the numeric parameters.

The part in venueview.php looks like this:

if (isset($_GET['url']) && !empty($_GET['url'])) {
    $url = strip_tags($_GET['url']);

    $mysqli = mysqli_connect('localhost', $dbuser, $dbpasswd, $dbname);
    if ($mysqli->connect_error) {
        die('Connect Error ('.$mysqli->connect_errno.') '.$mysqli->connect_error);
    }
    $sqlstr = "SELECT id, url FROM venues WHERE url = '".$url."' LIMIT 1";
    if ($results = $mysqli->query($sqlstr)){
        if ($results->num_rows == 1){
            $row = $results->fetch_assoc();
            $id = $row['id'];
        }else{
            $id = -1;
        }
    }
    $mysqli->close();
    if ($id != -1)
        header("Location: /venueview.phtml?vid=".$id);
}

What would I have to change in my code to make it work as intended? I’m stuck..

  • 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-31T11:15:55+00:00Added an answer on May 31, 2026 at 11:15 am

    Rewriting is not redirecting. Redirecting is to change the incoming request to make it seem to the page that it a request was made to the page.

    .* means match anything (.) any number of times (*)

    You need to change the pattern to match to suit what format your slugs are. If you want, say only letters to be allowed, use [a-zA-Z].

    For more details on what sort of pattern your page should have a look at the Regex syntax.

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

Sidebar

Related Questions

I have successfully set up FILESTREAM on my SQL 2008 server; however I've noticed
I have successfully parsed my json images and displayed the response as image ,however
Have successfully gotten the csrf middleware working in express as per previous SO questions.
I have successfully managed to get System.Speech.Synthesis to read English text in arbitrary voices
I have successfully implemented interop beftween Win32 application and managed .Net dll as described
I have successfully upgraded an MFC application which was compiled with an old version
I have successfully used the Excel and Word addin templates in Visual studio 2008
I have successfully compiled lua in my mac. It works. It runs. Now, I
I have successfully implemented Forms Authentication in SSRS, so it now uses both Roles
I have successfully created an app that reads from a bundled .plist file 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.