Replace GET method in URLpublic directory for .htaccessGet the full URL in PHP.htaccess rewrites one url, not the otherHow to do url re-writing for MVC purpose in PHPWant to Change URL from www.domain.com/home to www.domain.comUnable to remove index.php in WAMP with Codeigniter URLhow to skip index.php in URL rewriting?htaccess - Rewrite all files to index.php except sitemap.xmlNeed to fix too many redirects caused by .htaccess on localhost subdirectoryIn routing I cant get index as controller or method

What does なんだって mean in this case? 「そういう子なんだってだけで...」

What is this "opened" cube called?

Why do IR remotes influence AM radios?

Old scifi book featuring krakens attacking humans

Which polygons can be turned inside out by a smooth deformation?

How to differentiate between two people with the same name in a story?

Is there an in-universe explanation given to the senior Imperial Navy Officers as to why Darth Vader serves Emperor Palpatine?

Why does the weaker C–H bond have a higher wavenumber than the C=O bond?

Where should I draw the line on follow up questions from previous employer

Group riding etiquette

Answer with an image of my favorite musician

What checks exist against overuse of presidential pardons in the USA?

Normalized Malbolge to Malbolge translator

Where does the last newline character come from in this sed's result?

What is the following VRP?

Is this position a forced win for Black after move 14?

Generic method to call API functions with simple retrial on errors

Are sweatpants frowned upon on flights?

How to determine the convexity of my problem and categorize it?

How could a self contained organic body propel itself in space

In what language did Túrin converse with Mím?

What is Soda Fountain Etiquette?

How do I portray irrational anger in first person?

Fixing a blind bolt hole when the first 2-3 threads are ruined?



Replace GET method in URL


public directory for .htaccessGet the full URL in PHP.htaccess rewrites one url, not the otherHow to do url re-writing for MVC purpose in PHPWant to Change URL from www.domain.com/home to www.domain.comUnable to remove index.php in WAMP with Codeigniter URLhow to skip index.php in URL rewriting?htaccess - Rewrite all files to index.php except sitemap.xmlNeed to fix too many redirects caused by .htaccess on localhost subdirectoryIn routing I cant get index as controller or method






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








0















I am trying to rewrite the URL by accessing the directory and not actually referencing index.php



RewriteEngine on
RewriteCond %REQUEST_FILENAME -d
RewriteCond %REQUEST_FILENAME .php -f
RewriteRule ^([a-zA-Z]+) /?page=$1 [NC,L]


Basically, I am trying to:



 Change:
localhost/?page=Main

To:
localhost/Main









share|improve this question
































    0















    I am trying to rewrite the URL by accessing the directory and not actually referencing index.php



    RewriteEngine on
    RewriteCond %REQUEST_FILENAME -d
    RewriteCond %REQUEST_FILENAME .php -f
    RewriteRule ^([a-zA-Z]+) /?page=$1 [NC,L]


    Basically, I am trying to:



     Change:
    localhost/?page=Main

    To:
    localhost/Main









    share|improve this question




























      0












      0








      0








      I am trying to rewrite the URL by accessing the directory and not actually referencing index.php



      RewriteEngine on
      RewriteCond %REQUEST_FILENAME -d
      RewriteCond %REQUEST_FILENAME .php -f
      RewriteRule ^([a-zA-Z]+) /?page=$1 [NC,L]


      Basically, I am trying to:



       Change:
      localhost/?page=Main

      To:
      localhost/Main









      share|improve this question
















      I am trying to rewrite the URL by accessing the directory and not actually referencing index.php



      RewriteEngine on
      RewriteCond %REQUEST_FILENAME -d
      RewriteCond %REQUEST_FILENAME .php -f
      RewriteRule ^([a-zA-Z]+) /?page=$1 [NC,L]


      Basically, I am trying to:



       Change:
      localhost/?page=Main

      To:
      localhost/Main






      php .htaccess






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 1:59







      prosportal

















      asked Mar 27 at 22:05









      prosportalprosportal

      501 silver badge6 bronze badges




      501 silver badge6 bronze badges

























          2 Answers
          2






          active

          oldest

          votes


















          1















          RewriteEngine on
          RewriteCond %REQUEST_METHOD GET
          RewriteRule ^/?page=(.*)$ /$1


          should work you need the rewrite module enabled though






          share|improve this answer



























          • This causes a 500 error for any page I access. The rewrite module is enabled.

            – prosportal
            Mar 27 at 22:52











          • Remove the = sign from the RewriteCond: RewriteCond %REQUEST_METHOD GET

            – rickdenhaan
            Mar 27 at 22:55


















          1















          This works.



          RewriteEngine on
          RewriteCond %REQUEST_FILENAME !-d
          RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]





          share|improve this answer



























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2fstackoverflow.com%2fquestions%2f55387192%2freplace-get-method-in-url%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1















            RewriteEngine on
            RewriteCond %REQUEST_METHOD GET
            RewriteRule ^/?page=(.*)$ /$1


            should work you need the rewrite module enabled though






            share|improve this answer



























            • This causes a 500 error for any page I access. The rewrite module is enabled.

              – prosportal
              Mar 27 at 22:52











            • Remove the = sign from the RewriteCond: RewriteCond %REQUEST_METHOD GET

              – rickdenhaan
              Mar 27 at 22:55















            1















            RewriteEngine on
            RewriteCond %REQUEST_METHOD GET
            RewriteRule ^/?page=(.*)$ /$1


            should work you need the rewrite module enabled though






            share|improve this answer



























            • This causes a 500 error for any page I access. The rewrite module is enabled.

              – prosportal
              Mar 27 at 22:52











            • Remove the = sign from the RewriteCond: RewriteCond %REQUEST_METHOD GET

              – rickdenhaan
              Mar 27 at 22:55













            1














            1










            1









            RewriteEngine on
            RewriteCond %REQUEST_METHOD GET
            RewriteRule ^/?page=(.*)$ /$1


            should work you need the rewrite module enabled though






            share|improve this answer















            RewriteEngine on
            RewriteCond %REQUEST_METHOD GET
            RewriteRule ^/?page=(.*)$ /$1


            should work you need the rewrite module enabled though







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Mar 27 at 23:03

























            answered Mar 27 at 22:09









            jonathan Heindljonathan Heindl

            6342 silver badges13 bronze badges




            6342 silver badges13 bronze badges















            • This causes a 500 error for any page I access. The rewrite module is enabled.

              – prosportal
              Mar 27 at 22:52











            • Remove the = sign from the RewriteCond: RewriteCond %REQUEST_METHOD GET

              – rickdenhaan
              Mar 27 at 22:55

















            • This causes a 500 error for any page I access. The rewrite module is enabled.

              – prosportal
              Mar 27 at 22:52











            • Remove the = sign from the RewriteCond: RewriteCond %REQUEST_METHOD GET

              – rickdenhaan
              Mar 27 at 22:55
















            This causes a 500 error for any page I access. The rewrite module is enabled.

            – prosportal
            Mar 27 at 22:52





            This causes a 500 error for any page I access. The rewrite module is enabled.

            – prosportal
            Mar 27 at 22:52













            Remove the = sign from the RewriteCond: RewriteCond %REQUEST_METHOD GET

            – rickdenhaan
            Mar 27 at 22:55





            Remove the = sign from the RewriteCond: RewriteCond %REQUEST_METHOD GET

            – rickdenhaan
            Mar 27 at 22:55













            1















            This works.



            RewriteEngine on
            RewriteCond %REQUEST_FILENAME !-d
            RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]





            share|improve this answer





























              1















              This works.



              RewriteEngine on
              RewriteCond %REQUEST_FILENAME !-d
              RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]





              share|improve this answer



























                1














                1










                1









                This works.



                RewriteEngine on
                RewriteCond %REQUEST_FILENAME !-d
                RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]





                share|improve this answer













                This works.



                RewriteEngine on
                RewriteCond %REQUEST_FILENAME !-d
                RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 28 at 2:05









                prosportalprosportal

                501 silver badge6 bronze badges




                501 silver badge6 bronze badges






























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • 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%2fstackoverflow.com%2fquestions%2f55387192%2freplace-get-method-in-url%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

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript