Case insensitive product urlsMagento rewrite category/product URLs leading to 404 pageMagento 1.13 Product URLsRemove parent categories from subcategory URLsCase Sensitive URL RewritesBlock access to system URLs through htaccess or some other way?Rewrite product URLs to category URLsToo many rewrite URLs404 media urls in Fire BugHow to redirect upper case URL to lower case Magento 2I still have access to normal urls when rewrite urls is active

How can I remove studs and screws from the inside of drywall when installing a pocket door without needing to do paint and patch work on both sides?

What does the following chess proverb mean: "Chess is a sea where a gnat may drink from and an elephant may bathe in."

Adding gears to my grandson's 12" bike

How should I handle a question regarding my regrets during an interview?

Why is there an extra "t" in Lemmatization?

How old is the Italian word "malandrino"?

Why is the UH-60 tail rotor canted?

How does mathematics work?

Oriented vector bundle with odd-dimensional fibers

Which dice game has a board with 9x9 squares that has different colors on the diagonals and midway on some edges?

Are there any English words pronounced with sounds/syllables that aren't part of the spelling?

Pass USB 3.0 connection through D-SUB connector

Create Circle with Inner Radius

Impact of throwing away fruit waste on a peak > 3200 m above a glacier

What are "the high ends of castles" called?

Would using carbon dioxide as fuel work to reduce the greenhouse effect?

1025th term of the given sequence.

My current job follows "worst practices". How can I talk about my experience in an interview without giving off red flags?

On a Gameboy, what happens when attempting to read/write external RAM while RAM is disabled?

Why didn't NASA launch communications relay satellites for the Apollo missions?

Considerations when providing money to only one child out of two

What do Unicorns want?

Why does the salt in the oceans not sink to the bottom?

What would be the effects of (relatively) widespread precognition on the stock market?



Case insensitive product urls


Magento rewrite category/product URLs leading to 404 pageMagento 1.13 Product URLsRemove parent categories from subcategory URLsCase Sensitive URL RewritesBlock access to system URLs through htaccess or some other way?Rewrite product URLs to category URLsToo many rewrite URLs404 media urls in Fire BugHow to redirect upper case URL to lower case Magento 2I still have access to normal urls when rewrite urls is active






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















Does anyone have a good solution for making magento products' URLs case insensitive?



Obviously I've looked into:

<IfModule mod_speling.c>
CheckCaseOnly on
CheckSpelling on
</IfModule>



However since we are using mod_rewrite that doesn't work. So we then tried:



<IfModule mod_rewrite.c>
RewriteEngine on
rewritemap lowercase int:tolower
RewriteCond $1 [A-Z]
RewriteRule ^/(.*)$ /$lowercase:$1 [R=301,L]
</IfModule>



Which worked, on the product level but broke the admin search fields and a created a few other headaches.



So now I am looking for a solution with no compromises.










share|improve this question






























    4















    Does anyone have a good solution for making magento products' URLs case insensitive?



    Obviously I've looked into:

    <IfModule mod_speling.c>
    CheckCaseOnly on
    CheckSpelling on
    </IfModule>



    However since we are using mod_rewrite that doesn't work. So we then tried:



    <IfModule mod_rewrite.c>
    RewriteEngine on
    rewritemap lowercase int:tolower
    RewriteCond $1 [A-Z]
    RewriteRule ^/(.*)$ /$lowercase:$1 [R=301,L]
    </IfModule>



    Which worked, on the product level but broke the admin search fields and a created a few other headaches.



    So now I am looking for a solution with no compromises.










    share|improve this question


























      4












      4








      4








      Does anyone have a good solution for making magento products' URLs case insensitive?



      Obviously I've looked into:

      <IfModule mod_speling.c>
      CheckCaseOnly on
      CheckSpelling on
      </IfModule>



      However since we are using mod_rewrite that doesn't work. So we then tried:



      <IfModule mod_rewrite.c>
      RewriteEngine on
      rewritemap lowercase int:tolower
      RewriteCond $1 [A-Z]
      RewriteRule ^/(.*)$ /$lowercase:$1 [R=301,L]
      </IfModule>



      Which worked, on the product level but broke the admin search fields and a created a few other headaches.



      So now I am looking for a solution with no compromises.










      share|improve this question
















      Does anyone have a good solution for making magento products' URLs case insensitive?



      Obviously I've looked into:

      <IfModule mod_speling.c>
      CheckCaseOnly on
      CheckSpelling on
      </IfModule>



      However since we are using mod_rewrite that doesn't work. So we then tried:



      <IfModule mod_rewrite.c>
      RewriteEngine on
      rewritemap lowercase int:tolower
      RewriteCond $1 [A-Z]
      RewriteRule ^/(.*)$ /$lowercase:$1 [R=301,L]
      </IfModule>



      Which worked, on the product level but broke the admin search fields and a created a few other headaches.



      So now I am looking for a solution with no compromises.







      url-rewrite htaccess apache






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 30 '16 at 6:04









      Mohit Kumar Arora

      7,3815 gold badges17 silver badges36 bronze badges




      7,3815 gold badges17 silver badges36 bronze badges










      asked Aug 26 '16 at 19:02









      Johnathon MathewsJohnathon Mathews

      767 bronze badges




      767 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          0














          You would need to add the following to the httpd.conf for Apache



          RewriteMap lowercase int:tolower



          You then need to restart Apache for it to take affect. Then from here you can use the code you have in your htaccess file






          share|improve this answer

























          • Already mentioned that we tried this and it doesn't work.

            – Johnathon Mathews
            Aug 26 '16 at 23:35











          • So to confirm RewriteMap lc int:tolower is in the httpd.conf and not the htaccess yea?

            – Goose84
            Aug 27 '16 at 4:31












          • Correct, I can confirm that.

            – Johnathon Mathews
            Aug 29 '16 at 22:02













          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f133322%2fcase-insensitive-product-urls%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You would need to add the following to the httpd.conf for Apache



          RewriteMap lowercase int:tolower



          You then need to restart Apache for it to take affect. Then from here you can use the code you have in your htaccess file






          share|improve this answer

























          • Already mentioned that we tried this and it doesn't work.

            – Johnathon Mathews
            Aug 26 '16 at 23:35











          • So to confirm RewriteMap lc int:tolower is in the httpd.conf and not the htaccess yea?

            – Goose84
            Aug 27 '16 at 4:31












          • Correct, I can confirm that.

            – Johnathon Mathews
            Aug 29 '16 at 22:02















          0














          You would need to add the following to the httpd.conf for Apache



          RewriteMap lowercase int:tolower



          You then need to restart Apache for it to take affect. Then from here you can use the code you have in your htaccess file






          share|improve this answer

























          • Already mentioned that we tried this and it doesn't work.

            – Johnathon Mathews
            Aug 26 '16 at 23:35











          • So to confirm RewriteMap lc int:tolower is in the httpd.conf and not the htaccess yea?

            – Goose84
            Aug 27 '16 at 4:31












          • Correct, I can confirm that.

            – Johnathon Mathews
            Aug 29 '16 at 22:02













          0












          0








          0







          You would need to add the following to the httpd.conf for Apache



          RewriteMap lowercase int:tolower



          You then need to restart Apache for it to take affect. Then from here you can use the code you have in your htaccess file






          share|improve this answer















          You would need to add the following to the httpd.conf for Apache



          RewriteMap lowercase int:tolower



          You then need to restart Apache for it to take affect. Then from here you can use the code you have in your htaccess file







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Aug 30 '16 at 5:42

























          answered Aug 26 '16 at 19:59









          Goose84Goose84

          1,3551 gold badge14 silver badges42 bronze badges




          1,3551 gold badge14 silver badges42 bronze badges












          • Already mentioned that we tried this and it doesn't work.

            – Johnathon Mathews
            Aug 26 '16 at 23:35











          • So to confirm RewriteMap lc int:tolower is in the httpd.conf and not the htaccess yea?

            – Goose84
            Aug 27 '16 at 4:31












          • Correct, I can confirm that.

            – Johnathon Mathews
            Aug 29 '16 at 22:02

















          • Already mentioned that we tried this and it doesn't work.

            – Johnathon Mathews
            Aug 26 '16 at 23:35











          • So to confirm RewriteMap lc int:tolower is in the httpd.conf and not the htaccess yea?

            – Goose84
            Aug 27 '16 at 4:31












          • Correct, I can confirm that.

            – Johnathon Mathews
            Aug 29 '16 at 22:02
















          Already mentioned that we tried this and it doesn't work.

          – Johnathon Mathews
          Aug 26 '16 at 23:35





          Already mentioned that we tried this and it doesn't work.

          – Johnathon Mathews
          Aug 26 '16 at 23:35













          So to confirm RewriteMap lc int:tolower is in the httpd.conf and not the htaccess yea?

          – Goose84
          Aug 27 '16 at 4:31






          So to confirm RewriteMap lc int:tolower is in the httpd.conf and not the htaccess yea?

          – Goose84
          Aug 27 '16 at 4:31














          Correct, I can confirm that.

          – Johnathon Mathews
          Aug 29 '16 at 22:02





          Correct, I can confirm that.

          – Johnathon Mathews
          Aug 29 '16 at 22:02

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f133322%2fcase-insensitive-product-urls%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form