Backlinks, so links from other pages to my wordpress page, are missing a slash after the .com part. So https://mypage.com/subpage results in https://mypage.comsubpage
This happened after I've changed the domain of a page from .de to .com
Everything…
Let's say I have a site with URL: example.com
Does Google is treating "example.com" and "example.com/" pages as separate - So google thinks that one of them are duplicate?
If so, is it possible to configure 301 redirects from “example.com” to…
My Wordpress environment is running on IIS/Azure. I have a web.config file that I need help with. I am already successfully permanently redirecting traffic from all URLs with a trailing slash to the same URL without that slash. Works great,…
I have build and application using Laravel. On localhost everything works fine.
My home page route is
Route::get('/', 'HomeController@index');
On locahost when I load https://localhost/app/public it redirects autmatically to…
I have table with 2 columns where in one of them an url is stored.
Now I would need to update the table to remove all trailing slashes from the urls, including urls that have a query string.
Examples:
/page/sub/1/ => …
We know that we can find our scripts and parametres by using php's $_SERVER[REQUEST_URI].
My problem with this is that querying the default script (page) with $_SERVER[REQUEST_URI] will always return the full script. Both…
I'll try my best to describe my issue here, please do ask for further info if I'm unclear or if it is required for a solution.
I've just looked at my Wordpress site in Screaming Frog and I can see that some of my older pages (about 6 months or…
I'm using wordpress platform for my website. And I'm using custom-permalink plugin for url customization.Now,how can I get that customized url as canonical url without trailing slash issue?
Sample links are mentioned…
I've checked an issue on my wordpress. When browsing the domain page root https://domain1.com if adding a trailing slash at the end, like this https://domain1.com/ it gives a blank page.
If removing the trailing slash, it opens fine. Any fix for…
I am watching some tutorials to learn ASP.NET Core.I'm creating a MVC Web App.In website i have edit option for products.When i click edit button it goes to this url ;
"https://localhost:5001/Admin/Products/Edit1"
and it gives me error.Instead it…
I have a list of URLs, and I am trying to remove the trailing '/' from all URLs in the list. I have tried all of these variations with no error message, but no removal of the /:
for link in url_list:
if link.endswith('/'):
…
Im struggling with this problem for 3 days since i dont know any coding or regex of etc
i have a wp streaming site with iframe content, the iframe source already in https
now i want to migrate my streaming site to https
but when i try to do that,…
I have an existing htaccess-file that redirects to a subfolder. It is necessary to have an trailing slash.
I have add a rule that redirects to an url with a trailing slash, but since then the other rules are never met.
RewriteEngine…
I have the following .htaccess setup:
RewriteEngine On
RewriteBase /
DirectoryIndex index.php
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$…
I am struggling with htaccess redirects from both:
/folder/subfolder/any-value/ and /folder/subfolder/any-value to /another-folder/any-value/
The code below works for
/folder/subfolder/any-value/ to /another-folder/any-value/
But…