Zeliha Canderengul
Forum Replies Created
-
the shortcut you forwarded definitely lists the pages. However, I expect a more specific listing.
When I enter a page on my page, I want it to list only the sub-pages of that page.
For example, imagine that my website has 3 main pages like Images, Videos, News…. When I go to a video related subpage, only video pages should appear under it. The code you sent also shows the images and news pages.
my website has only 135 attachments open to search engines. however, a second attachment sitemap is formed, and its interior is empty. This is a problem. I want to make a reminder in case there is a clue. There are 1039 images in total on my website. Only 135 of them are INDEX and the remaining images are NOINDEX. maybe it’s taking into account the total of 1000 images instead of the 1000 URLs you mentioned?
- This reply was modified 1 year, 6 months ago by Zeliha Canderengul.
This issue has not been resolved yet. I did exactly what you said. but I don’t see any change or improvement.
ok thnk u
The above codes are what happens when I add htaccess for 301 SSL. I do not use these codes until the problem is solved. So for now I am using PHP 301 SSL redirect. We could be mistaken because an htaccess 301 SSL redirect is not active when you check my website. I will remove PHP SSL redirect and activate htaccess 301 SSL redirect until you respond to me so that you can do the test better. And I will wait for you to do a test. I hope we can fix the error if any.
Rogier Lankhorst (@rogierlankhorst)
my website is in Hostgator.
#Begin Really Simple Security
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteCond %{REQUEST_URI} !wp-content\/cache\/(all|wpfc-mobile-cache)
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
#End Really Simple Security# BEGIN WordPress
# Headers Security Advanced & HSTS WP – 5.0.06
<IfModule mod_headers.c>
Header always set Strict-Transport-Security “max-age=63072000; includeSubDomains; preload” “expr=%{HTTPS} == ‘on’”
Header always set X-XSS-Protection “1; mode=block”
Header always set X-Content-Type-Options “nosniff”
Header always set Referrer-Policy “strict-origin-when-cross-origin”
Header always set Expect-CT “max-age=7776000, enforce”
Header set Access-Control-Allow-Origin “null”
Header set Access-Control-Allow-Methods “GET,PUT,POST,DELETE”
Header set Access-Control-Allow-Headers “Content-Type, Authorization”
Header set X-Content-Security-Policy “img-src *; media-src * data:;”
Header always set Content-Security-Policy “report-uri https://www.resimsin.com”
Header always set X-Frame-Options “SAMEORIGIN”
Header always set Permissions-Policy “accelerometer=(), autoplay=(), camera=(), fullscreen=*, geolocation=(self), gyroscope=(), microphone=(), payment=*”
Header set X-Permitted-Cross-Domain-Policies “none”
</IfModule>
# END Headers Security Advanced & HSTS WP<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
- This reply was modified 1 year, 12 months ago by Zeliha Canderengul.
ok
- This reply was modified 1 year, 12 months ago by Zeliha Canderengul.
- This reply was modified 1 year, 12 months ago by Zeliha Canderengul.
- This reply was modified 1 year, 12 months ago by Zeliha Canderengul.
Forum: Plugins
In reply to: [Yoast SEO] I want to add nofollow link along with noindex to 404 error pages@maybellyne : There is no solution for adding nofollow in the article in the link you added. I want to add noindex and nofollow meta tags to all pages that return 404 errors. Because I don’t want 404 pages to be tracked. Do you have a method for this?
I also installed a plugin (https://www.ads-software.com/plugins/404page/) and created a custom 404 page for myself. I fixed (adjusted) the noindex and nofollow setting within this page. However, the 404 page still does not contain nofollow. I request a solution.
Forum: Themes and Templates
In reply to: [Gridzone] Can I change the order of the images in the slider?You are amazing. Problem solved. God bless you.
Forum: Plugins
In reply to: [Yoast SEO] Pictures in the slider are not included in my website’s sitemapThis example you quoted is complete nonsense. Because I will have to add each image one by one. There should be an option to do this automatically. If I have added 3 images in aa post, these 3 images should be added to the sitemap. I invite you to resolve this issue.
Forum: Fixing WordPress
In reply to: I want to move the style.css in the header to the footer@rickymccallum87 the code did not run.
Forum: Fixing WordPress
In reply to: It returns an error code for wp-json/wp/v2/users/1Thank u for @vijayhardaha . This is a great answer.
Forum: Plugins
In reply to: [Yoast SEO] product-sitemap.xml homepage link display issue.I solved the problem. Paste the code into functions.php.
add_filter( ‘wpseo_sitemap_post_type_archive_link’, ‘my_wpseo_cpt_archive_link’, 10, 2);
function my_wpseo_cpt_archive_link( $link, $post_type ) {
// Disable product/post archives in the sitemaps
if ( $post_type === ‘product’ )
return false;return $link;
}