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;
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
add a comment |
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
add a comment |
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
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
php .htaccess
edited Mar 28 at 1:59
prosportal
asked Mar 27 at 22:05
prosportalprosportal
501 silver badge6 bronze badges
501 silver badge6 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
RewriteEngine on
RewriteCond %REQUEST_METHOD GET
RewriteRule ^/?page=(.*)$ /$1
should work you need the rewrite module enabled though
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
add a comment |
This works.
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
RewriteEngine on
RewriteCond %REQUEST_METHOD GET
RewriteRule ^/?page=(.*)$ /$1
should work you need the rewrite module enabled though
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
add a comment |
RewriteEngine on
RewriteCond %REQUEST_METHOD GET
RewriteRule ^/?page=(.*)$ /$1
should work you need the rewrite module enabled though
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
add a comment |
RewriteEngine on
RewriteCond %REQUEST_METHOD GET
RewriteRule ^/?page=(.*)$ /$1
should work you need the rewrite module enabled though
RewriteEngine on
RewriteCond %REQUEST_METHOD GET
RewriteRule ^/?page=(.*)$ /$1
should work you need the rewrite module enabled though
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
add a comment |
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
add a comment |
This works.
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]
add a comment |
This works.
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]
add a comment |
This works.
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]
This works.
RewriteEngine on
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^/*([a-zA-Z]+) index.php?page=$1 [NC,L]
answered Mar 28 at 2:05
prosportalprosportal
501 silver badge6 bronze badges
501 silver badge6 bronze badges
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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