Had oxwall up and running fine since July.
This morning, happened to check the site and see that
http://www.mydomain.com/community where the site has lived for months and worked now comes up PAGE NOT FOUND The page doesn't exist. It's not a server 404 as it is a themed page not found page.
What I do see is, http://www.mydomain.com/community/index
is where the page is now found.
Here is my htaccess :
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} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
Anyone with ideas as to why the mysterious and sudden change an how to fix??