sitemap contains weird links and does not contain my pages [closed]
sitemap contains weird links and does not contain my pages [closed]
sitemap contains weird links and does not contain my pages [closed]
Add this code to the functions.php file of your (child) theme or as a plugin- add_action( ‘init’, ‘wpse_393237_add_any_endpoint’ ); function wpse_393237_add_any_endpoint() { add_rewrite_endpoint( ‘.*’, EP_ALL ); } Please note, you may need to flush the rewrite rules if you see a 404 error. (simply saving the permalink does the trick) Ref: https://developer.wordpress.org/reference/functions/add_rewrite_endpoint/
What to write in the htaccess in order to detect browser language and point accordingly?
change permalink structure with htaccess without SEO impact
HTTP Error 406 always on site?
Try something like this instead: <If “%{THE_REQUEST} !~ m#\s/wp-admin#”> Header add Content-Security-Policy “default-src ‘self’;” Header add Content-Security-Policy “script-src ‘self’;” </If> This should set the two headers only when the requested URL does not start with /wp-admin. The check is against THE_REQUEST (as opposed to REQUEST_URI) since REQUEST_URI changes when the URL is rewritten by the … Read more
RewriteCond %{REQUEST_URI} ^post/tag/ RewriteRule .* – [F] The REQUEST_URI server var does start with a slash (it is a full root-relative URL-path), although you do say you have tried this “with and without the leading slash”, so this should have worked if that is what you are referring to and /post is the first path-segment … Read more
Cadeyrn’s code work probably for 1 specific size ( 200&w=350& etc) , the major problem with timthumb and the reason people use it, is that it allows for many dynamic sizes thus making .htaccess rewrite rules much more difficult, especially if you using friendly WordPress permalink structure. There is a guide here on how to … Read more
Remove the other .htaccess from the sub-directory and try putting this in the .htaccess in your root directory: <Directory /scripts> Order allow,deny <Files hello.php> Deny from all </Files> </Directory>
I am by no means a mod_rewrite expert but would something like this work? <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # Force HTTPS for /cart/ RewriteCond %{HTTPS} !=on RewriteCond %{THE_REQUEST} ^[A-Z]+\s/cart [NC] RewriteRule ^(cart) https://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L] # Force HTTPS for /my-account/ RewriteCond %{HTTPS} !=on RewriteCond %{THE_REQUEST} ^[A-Z]+\s/my-account [NC] RewriteRule ^(my-account) https://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L] # Force HTTPS … Read more