rodesignweb
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Title of the main pageUP! Suggestions?
Forum: Everything else WordPress
In reply to: Title of the main pagebasically I just want to add title andmeta tags to the first page like:
<title></title>
meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
<meta name=”language” content=””/>
<meta name=”audience” content=””/>
<meta name=”page-topic” content=””/>
<meta name=”classification” content=””/>
<meta name=”googlebot” content=””/>
<meta name=”revisit-after” content=””/>
<meta name=”description” content=”” />
<meta name=”keywords” content=”” />
<base href=”” />This must be added only to the main page of my blog.
Please advice. Thanks!
Forum: Fixing WordPress
In reply to: .htaccess and PW protected directoryHere is how I changed my .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/commdemo/(.*)$ [NC]
RewriteRule ^.*$ – [L]
</IfModule># BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
But the issue persists. One more time, if I remove all the content from the .htaccess file, the PW protected is working as it should, but my blog in no longer working.
Forum: Fixing WordPress
In reply to: .htaccess and PW protected directoryUP!
Forum: Fixing WordPress
In reply to: .htaccess and PW protected directoryUP!