Redirect / remove links by question mark











up vote
0
down vote

favorite












I need to remove all links that have a question mark. These are links not indexed by Google.



I can't find a solution to this problem.



Example:



http://example-page.pl/pl?start=18 --> http://example-page.pl/pl



HTACCESS:



...



# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

RewriteCond %{THE_REQUEST} ^GET.*index.php [NC]
RewriteRule (.*?)index.php/*(.*) /$1$2 [R=301,NE,L]


...










share|improve this question




















  • 2




    Remove them from where? Have you tried anything? Where is your code?
    – Dirk Scholten
    Nov 20 at 8:55










  • This might help: stackoverflow.com/questions/21118511/…
    – Justin Schwimmer
    Nov 20 at 9:04















up vote
0
down vote

favorite












I need to remove all links that have a question mark. These are links not indexed by Google.



I can't find a solution to this problem.



Example:



http://example-page.pl/pl?start=18 --> http://example-page.pl/pl



HTACCESS:



...



# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

RewriteCond %{THE_REQUEST} ^GET.*index.php [NC]
RewriteRule (.*?)index.php/*(.*) /$1$2 [R=301,NE,L]


...










share|improve this question




















  • 2




    Remove them from where? Have you tried anything? Where is your code?
    – Dirk Scholten
    Nov 20 at 8:55










  • This might help: stackoverflow.com/questions/21118511/…
    – Justin Schwimmer
    Nov 20 at 9:04













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I need to remove all links that have a question mark. These are links not indexed by Google.



I can't find a solution to this problem.



Example:



http://example-page.pl/pl?start=18 --> http://example-page.pl/pl



HTACCESS:



...



# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

RewriteCond %{THE_REQUEST} ^GET.*index.php [NC]
RewriteRule (.*?)index.php/*(.*) /$1$2 [R=301,NE,L]


...










share|improve this question















I need to remove all links that have a question mark. These are links not indexed by Google.



I can't find a solution to this problem.



Example:



http://example-page.pl/pl?start=18 --> http://example-page.pl/pl



HTACCESS:



...



# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

RewriteCond %{THE_REQUEST} ^GET.*index.php [NC]
RewriteRule (.*?)index.php/*(.*) /$1$2 [R=301,NE,L]


...







.htaccess redirect






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 at 12:26









Gary Thomas

1,0451312




1,0451312










asked Nov 20 at 8:54









Łukasz Nizioł

32




32








  • 2




    Remove them from where? Have you tried anything? Where is your code?
    – Dirk Scholten
    Nov 20 at 8:55










  • This might help: stackoverflow.com/questions/21118511/…
    – Justin Schwimmer
    Nov 20 at 9:04














  • 2




    Remove them from where? Have you tried anything? Where is your code?
    – Dirk Scholten
    Nov 20 at 8:55










  • This might help: stackoverflow.com/questions/21118511/…
    – Justin Schwimmer
    Nov 20 at 9:04








2




2




Remove them from where? Have you tried anything? Where is your code?
– Dirk Scholten
Nov 20 at 8:55




Remove them from where? Have you tried anything? Where is your code?
– Dirk Scholten
Nov 20 at 8:55












This might help: stackoverflow.com/questions/21118511/…
– Justin Schwimmer
Nov 20 at 9:04




This might help: stackoverflow.com/questions/21118511/…
– Justin Schwimmer
Nov 20 at 9:04












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










Use a RewriteCond to check if there is a query string, then using RewriteRule redirect only the first part of the url.





Input: http://example-page.pl/pl?start=18



RewriteCond %{QUERY_STRING} .
RewriteRule ^(.*)$ /$1? [R,L]


Output: http://example-page.pl/pl





You can view this working via htaccess.madewithlove.be.






share|improve this answer





















  • Thank you very much! This solution works perfectly :)
    – Łukasz Nizioł
    Nov 20 at 9:17











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',
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%2f53389332%2fredirect-remove-links-by-question-mark%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








up vote
0
down vote



accepted










Use a RewriteCond to check if there is a query string, then using RewriteRule redirect only the first part of the url.





Input: http://example-page.pl/pl?start=18



RewriteCond %{QUERY_STRING} .
RewriteRule ^(.*)$ /$1? [R,L]


Output: http://example-page.pl/pl





You can view this working via htaccess.madewithlove.be.






share|improve this answer





















  • Thank you very much! This solution works perfectly :)
    – Łukasz Nizioł
    Nov 20 at 9:17















up vote
0
down vote



accepted










Use a RewriteCond to check if there is a query string, then using RewriteRule redirect only the first part of the url.





Input: http://example-page.pl/pl?start=18



RewriteCond %{QUERY_STRING} .
RewriteRule ^(.*)$ /$1? [R,L]


Output: http://example-page.pl/pl





You can view this working via htaccess.madewithlove.be.






share|improve this answer





















  • Thank you very much! This solution works perfectly :)
    – Łukasz Nizioł
    Nov 20 at 9:17













up vote
0
down vote



accepted







up vote
0
down vote



accepted






Use a RewriteCond to check if there is a query string, then using RewriteRule redirect only the first part of the url.





Input: http://example-page.pl/pl?start=18



RewriteCond %{QUERY_STRING} .
RewriteRule ^(.*)$ /$1? [R,L]


Output: http://example-page.pl/pl





You can view this working via htaccess.madewithlove.be.






share|improve this answer












Use a RewriteCond to check if there is a query string, then using RewriteRule redirect only the first part of the url.





Input: http://example-page.pl/pl?start=18



RewriteCond %{QUERY_STRING} .
RewriteRule ^(.*)$ /$1? [R,L]


Output: http://example-page.pl/pl





You can view this working via htaccess.madewithlove.be.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 20 at 9:10









Gary Thomas

1,0451312




1,0451312












  • Thank you very much! This solution works perfectly :)
    – Łukasz Nizioł
    Nov 20 at 9:17


















  • Thank you very much! This solution works perfectly :)
    – Łukasz Nizioł
    Nov 20 at 9:17
















Thank you very much! This solution works perfectly :)
– Łukasz Nizioł
Nov 20 at 9:17




Thank you very much! This solution works perfectly :)
– Łukasz Nizioł
Nov 20 at 9:17


















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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2f53389332%2fredirect-remove-links-by-question-mark%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

404 Error Contact Form 7 ajax form submitting

How to know if a Active Directory user can login interactively

TypeError: fit_transform() missing 1 required positional argument: 'X'