Issue How do you change the color of a specific link on a post in WordPress? Do I just use CSS code right there in the post? for example, this is what I did in the post: <a href="http://www.google.com"><font color="FF00CC"></font>test</a>
Continue readingTag: wordpress
[SOLVED] Dropdown menu overlaid by the content
Issue The current theme of my WordPress website has two menus, a top menu and a bottom menu The dropdown menu of the bottom menu are overlaid by the above content for example I tried to perform the setup of
Continue reading[SOLVED] prevent Google from indexing VM's external IP
Issue My setup: Bitnami WordPress GCP VM GCP HTTPs Load Balancer Load Balancer has http to https redirection, www to non-www redirection Cloud CDN Main Problem: The VM’s external IP (22.22.22.22) is indexed by Google Search. I’m unable to remove
Continue reading[SOLVED] configure nginx with wordpress
Issue I am trying to configure nginx with wordpress. the Apache server is running on port 8083. the wordpress url is https://dhahbya.com my nginx config file is : server { listen *:443 ssl; server_name www.dhahbya.com dhahbya.com; ssl_certificate ****************; ssl_certificate_key **************;
Continue reading[SOLVED] Putting RewriteEngine On in subdir .htaccess file disables rewrites regarding this subdir specified in root .htaccess
Issue I have working rewrite rule in /.htaccess file: RewriteCond %{REQUEST_URI} ^/wp-content/uploads/sites/[0-9]+/xxx_uploads/ [NC] RewriteRule wp-content/uploads/sites/[0-9]+/xxx_uploads/(.*) wp-content/files.php?file=xxx_uploads/$1 [R=302,L] which disallows unauthorized users viewing files in specific directories. It works as long as there is nothing in /wp-content/uploads/.htaccess If I put at
Continue reading[SOLVED] WordPress: How can I redirect all wordpress tags from subdirectory (subfolder) to another one
Issue I changed my permalinks and it working fine, but I need to redirect old tag folder to archives/tag to not lose links which google indexed below is my .htaccess file in the root of my recipes site http://foodonia.com #
Continue reading[SOLVED] Synology Personal Websites htaccess results in 403 errors
Issue Synology Server with DSM 7.1.x (recently updated from DSM 6.x and downgrading back down to DSM 6.x is not recommended by Synology) Webstation Enabled with HTTP back-end server: Apache HTTP Server 2.4 and PHP: PHP 8.0 Personal Websites with
Continue reading[SOLVED] Exclude folder in domain redirection in .htaccess using WordPress
Issue We have multiple redirections in WordPress .htaccess depending on language. RewriteEngine On RewriteCond %{HTTP_HOST} ^www.example.es$ RewriteRule (.*)$ https://www.example.com/es/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^www.example.de$ RewriteRule (.*)$ https://www.example.com/de/$1 [R=301,L] We want to exclude some folders. We have tried by adding these example:
Continue reading[SOLVED] .htaccess with two subfolders (bedrock in it self directory in the root)
Issue In the webroot of my local server, I try to install Bedrock in it self directory : |- htdocs |- bedrock |- web With the .htaccess file I wrote, I can access the web directory and so launch my
Continue reading[SOLVED] How to move wordpress website from hosting account to localhost
Issue I’m getting 404 error while accessing relative paths on WordPress website copied from hosting and deployed locally as Apache vhost. Local website is basically git clone of the existing remote website. The following steps were performed to make it
Continue reading