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

  • Home
  • SEARCH
  • 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 7606191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:20:52+00:00 2026-05-31T00:20:52+00:00

After all those mod rewrite topics here at stackoverflow, I still haven’t find an

  • 0

After all those mod rewrite topics here at stackoverflow, I still haven’t find an answer to my question. I have a topsite, and basically all I want to do is to change /index.php?method=in&cat=Half+Life (the “+” is a space) into /Half-Life .

Until now, I’ve succeeded changing /index.php?method=in&cat=Half+Life into /Half+Life.htm .

What I want is to make the .htm disappear and to change the “+” into “-“.

Here’s my code with what I’m working on in my .htaccess file :

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)\.htm$ /index.php?cat=$1 [L]

One more question: Is it more, how should I call it, “SEO-friendly”, if I do it this way?

Thanks!

  • 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-31T00:20:53+00:00Added an answer on May 31, 2026 at 12:20 am

    The problem with removing the .htm from it is that it then rewrites every single url. That would include urls for files that actually exist (like index.php). There are a couple approaches that you could take.

    Assume that all your actual files have a dot (.) in the file name, rewrite everything else. If you do actually have files or directories that are named without an extension, this won’t work. Or if you want some of your categories to have dots.

    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule ([^\.]+)$ /index.php?cat=$1 [L]
    

    You can have your rewrite rule ignore files that actually exist

    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule (.*) /index.php?cat=$1 [L]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After a day or two, I am still fighting with Mod Rewrite. It seems
It is Hallowe'en after all. Here's the problem: I'm maintaining some old-ish J2EE code,
Is it possible to have one jQuery ready block executed after all others have
I have designed one sign-up form,in this form after getting all necessary values I
Even after all the hotfixes and updates that are supposed to fix this, my
What to do when after all probing, a reportedly valid object return 'undefined' for
It's gotta be free. It's hobby, after all, not a business!. Creating for-profit software
I don't know if I should test my @Entity-annotated Pojos. After all, there are
I implemented threading in my application for scraping websites. After all the sites are
After downloading all .NET framework symbols and sources using NetMassDownloader , is it possible

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.