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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:34:05+00:00 2026-05-27T20:34:05+00:00

When using categories in ExpressionEngine, a Category URL Indicator trigger word can be set

  • 0

When using categories in ExpressionEngine, a Category URL Indicator trigger word can be set to load a category by its {category_url_title}.

I would like to remove the category “trigger word” from the URL.

Here is what I have so far, with the trigger word set to “category”:

RewriteRule /products/(.+)$ /products/category/$1 [QSA,L]

I’m not an expert at writing regular expressions, but I do a little. I’m 99% sure my RegEx is fine, however when trying to use it as a RewriteRule in my .htaccess file, I’m getting a 500 error.

I’m sure it’s something stupid, but for some reason I’m not seeing my mistake. What am I doing wrong?


Update: Adding a ^ to the beginning of the RewriteRule fixed the 500 error.

RewriteRule ^/products/(.+)$ /products/category/$1 [QSA,L]
  • 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-27T20:34:05+00:00Added an answer on May 27, 2026 at 8:34 pm

    This is not safe. Take:

    /products/a
    

    The regex group matches a.

    It will be rewritten to:

    /products/category/a
    

    which the regex matches again (this time, the group matches category/a). Guess what will happen.

    You want /products/ from the beginning of input if it is not followed by category/, which means you want a negative lookahead. Also, the QSA flag is of no use, you don’t have a query string to rewrite (QSA stands for Query String Append):

    RewriteRule ^/products/(?!category/)(.+) /products/category/$1 [L]
    

    Another way to use it (and which I personally prefer) is to use a RewriteCond prior to the rule:

    RewriteCond %{REQUEST_URI} ^/products/(?!category/)
    RewriteRule ^/products/(.*) /products/category/$1 [L]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

article = get_object_or_404(Article,slug=slug) categories = article.category.all() Using render_to_response() , how can I use the
When using categories, you can override implementation methods with your own like so: //
I'm building a simple java Servlet which passes categories using a URL variable into
I am looking at using a custom template for a set of categories. Is
I'm displaying my categories using the wp_list_categories function like so: <?php wp_list_categories('selected=6&title_li='); ?> Now,
I'm using a GridView and a LinqDataSource to view the Categories table. I set
How would I convert the following using xslt <blogger> <post> <text>...</text> <categories>Engineering, Internet, Sausages</catgories>
I'm using url mappings to translate the URL directory structure into categories within a
I would like to create a graph like this one using gnuplot (or matplotlib,
I have a Category class which looks like this: @Entity @Table(name = categories) public

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.