caroline2
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Increasing content area width (left/right spaces)Hi thank you for your help, i really appreciate it.
Forum: Fixing WordPress
In reply to: Increasing content area width (left/right spaces)Please help me on this issue @a2hostinglk
Forum: Fixing WordPress
In reply to: Increasing content area width (left/right spaces)Please see screenshot of what i am trying to achieve below. I am trying to remove that white space highlighted in red on the sides.
https://lumesseafricareports.co.za/wp-content/uploads/2017/07/Whitespace.png
PS – To answer your question, yes we have to display side to side so that comparison can be easy for us.
Forum: Fixing WordPress
In reply to: Redirecting a WordPress websiteAndrea
The Incredible Code Injector
621 pts 470 pts LEVEL 5
I usually do a subfolder installation when there is already a website in the root and I need to make a new website starting from scratch.
in this way I can keep the old site live till the new one is ready and tested (in coming-soon mode), and then in a matter of minutes I delete the old site from the root and I set up the new one to be viewed as if it was in the root (same technique as explained in this article).I found this comment from this article https://premium.wpmudev.org/blog/install-wordpress-subdirectory/ , n that’s exactly what i did on the domain, but after deleting the old website files, and replaced with the new files, the website started redirecting to https://www.example.com/NewWebsite
Forum: Fixing WordPress
In reply to: Redirecting a WordPress websiteI tried everything, from both the articles but still not working, the website still redirect to https://www.example.com/NewWebsite.
I have run-out of options, and the worst part is that this is a client’s website.
Forum: Fixing WordPress
In reply to: Redirecting a WordPress website1) After Installing the wordpress in root folder, move EVERYTHING from root folder into subdirectory. – i installed the WordPress in subdirectory
And i tried this code <IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteCond %{REQUEST_URI} !^/my_subdir/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /my_subdir/$1
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ my_subdir/index.php [L]
</IfModule> but still, it does not work, the website still redirect to https://www.example.com/NewWebsite