V
V
Vlad2019-05-15 15:28:59
htaccess
Vlad, 2019-05-15 15:28:59

How to rewrite htaccess?

Please tell me how to change this rule so that it works on all pages of the site except for the /wp-admin/ folder?

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

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
dodo512, 2019-05-15
@Sc0undRel

on all pages of the site except for the /wp-admin/ folder

Those. need an exception for /wp-admin/index.php and other files in the folder.
RewriteCond %{REQUEST_URI}  !^/wp-admin($|/)
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^(.*)$ /$1? [R=301,L]

V
Viktor Taran, 2019-05-15
@shambler81

RewriteCond %{REQUEST_URI} !^/wp\-admin$
RewriteCond %{QUERY_STRING} ^(.+) [NC]
RewriteRule ^(.*)$ /$1? [R=301,L]

negations work in .htaccess!

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question