We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Are oxwall blog SEO friendly [Answered] | Forum

Topic location: Forum home » Support » General Questions
Kris Corp
Kris Corp Jul 3 '14
Ok i did. Hopefully someone answers. So i would have to have my whole site open to guest in order for google to index it? So all pages need to be open to guest with the exception of that one page for the signin page.
ross Team
ross Jul 3 '14
Yes, your website should be open. 
Kris Corp
Kris Corp Jul 3 '14
Works perfect right now. Only if i can get someone to get me a smooth redirect to the signin page from my url that would be awesome. Thats all im missing. I want all blog content to be listed in google when people search key works. One last time this will work if i do it this way right?
The Forum post is edited by Kris Corp Jul 3 '14
tammy harris
tammy harris Jul 3 '14
simple any page that you need to login to see google cant index
so any page ie blogs  in admin pages edit blogs page to be view able by guests
so when you are not logged in you will see the blogs link in menu  if you can see it not logged in google can see it and will index it
 
Kris Corp
Kris Corp Jul 3 '14
Well i want the index page to be my sigin in page. You can do a redirect on the page to send it there but it flashes the tab screen then goes to the signup screen. I want it as a smooth transition. Right now it looks cheap. I dont like that. I have all the features perfect but i cant figure out how to make my signup page my index page without doing a meta redirect. I need help. I dont know if i need to do some custom coding or what.
Kris Corp
Kris Corp Jul 3 '14
Nevermind. I figured it out myself.
Kris Corp
Kris Corp Jul 3 '14
Nevermind. I figured it out myself.
ross Team
ross Jul 3 '14
Can you please share a solution, for other community members. 
Kris Corp
Kris Corp Jul 3 '14
Ok now it works but facebook connect doesnt work. Stays on sign in page. Try nivasocial.com
ross Team
ross Jul 4 '14
One request per topic, please
Kris Corp
Kris Corp Jul 4 '14
Ross its related to the same issue. You guys need to get it together. You guys spend more time organizing topics than solving. Since ive used oxwall i have really found no real help. I always end up spending hours trying to solve the problems myself which is starting to get to me. If you guys are on the developement team then you need to help those who are having issues with your software instead of saying what you guys wont do.

My issue: http://www.nivasocial.com

Facebook connect stays on the signin page and wont go to the network. I made http://www.nivasocial.com/sign-in the index main page by redirecting and now this issue is happening. I need help. Please provide me the answers im looking for.
The Forum post is edited by Kris Corp Jul 4 '14
ross Team
ross Jul 4 '14
How is the title of this post related to your FB problem? 


Create another post, please

Kris Corp
Kris Corp Jul 4 '14
Its related because i started off with the blog issue tryin to get the blog to be index while the sign in page stays as the index. Now because i made the changes the facebook connect button doesnt log into the network. It says it logged in but it doesnt go past the sign in page.  So therefore its part of the same issue.
Kris Corp
Kris Corp Jul 4 '14
So ross! You arent going to help me correct?
ross Team
ross Jul 4 '14
What changes did you do, for the sign-in page to be as your landing page?
Kris Corp
Kris Corp Jul 4 '14
htaccess redirect
ross Team
ross Jul 4 '14
can you please provide the instructions or screenshot of your .htaccess?
Kris Corp
Kris Corp Jul 4 '14
Root:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{HTTP_HOST} ^nivasocial\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.nivasocial\.com$
RewriteRule ^/?$ "http\:\/\/www\.nivasocial\.com\/sign\-in" [R=301,L]


AddEncoding gzip .gz
AddEncoding gzip .gzip
<FilesMatch "\.(js.gz|js.gzip)$">
  ForceType text/javascript
</FilesMatch>
<FilesMatch "\.(css.gz|css.gzip)$">
  ForceType text/css
</FilesMatch>

RewriteCond %{REQUEST_URI} !^/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/
 RewriteCond %{REQUEST_URI} !/google_file.html
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php


Kris Corp
Kris Corp Jul 4 '14
Includes Directory:

Options +FollowSymLinks
RewriteEngine On

AddEncoding gzip .gz
AddEncoding gzip .gzip
<FilesMatch "\.(js.gz|js.gzip)$">
  ForceType text/javascript
</FilesMatch>
<FilesMatch "\.(css.gz|css.gzip)$">
  ForceType text/css
</FilesMatch>


RewriteCond %{REQUEST_URI} !^/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/
 RewriteCond %{REQUEST_URI} !/google_file.html
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php

RewriteCond %{HTTP_HOST} !\.nivasocial\.com [NC]
RewriteRule ^(.*)$ http://www.nivasocial.com/sign-in [L,R=301]
tammy harris
tammy harris Jul 4 '14
add these to the top of ya htacess will help speed and security

RewriteCond %{HTTP_USER_AGENT} libwww-perl.* 

RewriteRule .* – [F,L]


# Enable compression<IfModule mod_deflate.c>  <FilesMatch "\.(js|css|php|eot|ttf|otf|svg)$">    SetOutputFilter DEFLATE  </FilesMatch></IfModule>


# Control ETags which is thought that bring better performance<IfModule mod_headers.c>    Header unset ETag</IfModule>FileETag None


<IfModule mod_headers.c>  <FilesMatch "\.(js|css|xml|gz)$">    Header append Vary Accept-Encoding  </FilesMatch></IfModule>
<IfModule mod_expires.c>
    # Enable expirations    ExpiresActive On
    # Default directive    ExpiresDefault "access plus 1 month"
    # My favicon    ExpiresByType image/x-icon "access plus 1 year”
    # Images    ExpiresByType image/gif "access plus 1 month"    ExpiresByType image/png "access plus 1 month"    ExpiresByType image/jpg "access plus 1 month"    ExpiresByType image/jpeg "access plus 1 month"
    # CSS    ExpiresByType text/css "access 1 month”
    # Javascript    ExpiresByType application/javascript "access plus 1 year"
</IfModule>


 <IfModule mod_mime.c> AddType application/x-javascript .js AddType text/css .css</IfModule>

Pages: « 1 2 3 »