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]
...
.htaccess redirect
add a comment |
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]
...
.htaccess redirect
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
add a comment |
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]
...
.htaccess redirect
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
.htaccess redirect
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
add a comment |
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
add a comment |
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.
Thank you very much! This solution works perfectly :)
– Łukasz Nizioł
Nov 20 at 9:17
add a comment |
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.
Thank you very much! This solution works perfectly :)
– Łukasz Nizioł
Nov 20 at 9:17
add a comment |
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.
Thank you very much! This solution works perfectly :)
– Łukasz Nizioł
Nov 20 at 9:17
add a comment |
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.
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.
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
add a comment |
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
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.
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.
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%2f53389332%2fredirect-remove-links-by-question-mark%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
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