Giter VIP home page Giter VIP logo

Comments (15)

danpros avatar danpros commented on May 24, 2024

How about uncomment the rewritebase:

# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
RewriteBase /

if still don't work than add the folder:

 RewriteBase /htmly

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

No, it doesn't matter if I use RewriteBase or not. Except the path is wrong or doesn't exists.

from htmly.

danpros avatar danpros commented on May 24, 2024

I should try to register there to test it, seems the first year is free.

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

yeah, this is true and the have nice features like ssh ;-)
hope you find a solution.

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

anything new? got your 1yr free domain? ;-)

from htmly.

danpros avatar danpros commented on May 24, 2024

There is a setup fee 😄

But I snap one domain there: http://goo.gl/0jJ0mz

For htaccess I just uncomment the Options -Indexes and Options +FollowSymLinks and its work. Perhaps you should use the default file manager to change that.

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

back again...

still doesn't work.

from htmly.

danpros avatar danpros commented on May 24, 2024

@nightflasher but mine is work 😄

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

okay, i get "this page doesn't exist"

from htmly.

danpros avatar danpros commented on May 24, 2024

That's really weird since run fine on my host, this is my htaccess file on one.com:

# Don't show directory listings for URLs which map to a directory.
# Options -Indexes

# Follow symbolic links in this directory.
# Options +FollowSymLinks

# Make HTMLy handle any 404 errors.
  ErrorDocument 404 /index.php

# Set the default handler.
  DirectoryIndex index.php index.html index.htm

# Requires mod_expires to be enabled.
<IfModule mod_expires.c>

  # to activate mode_expires
  ExpiresActive on

  ExpiresDefault                                      "access plus 1 month"

  # For CSS
  ExpiresByType text/css                              "access plus 1 month"

  # For Data interchange
  ExpiresByType application/json                      "access plus 0 seconds"
  ExpiresByType application/xml                       "access plus 0 seconds"
  ExpiresByType text/xml                              "access plus 0 seconds"

  # For Favicon
  ExpiresByType image/x-icon                          "access plus 1 year"

  # For HTML components (HTCs)
  ExpiresByType text/x-component                      "access plus 1 month"

  # For HTML
  ExpiresByType text/html                             "access plus 1 month"

  # For JavaScript
  ExpiresByType application/javascript                "access plus 1 month"

  # For Manifest files
  ExpiresByType application/x-web-app-manifest+json   "access plus 0 seconds"
  ExpiresByType text/cache-manifest                   "access plus 0 seconds"

  # For Media
  ExpiresByType audio/ogg                             "access plus 1 month"
  ExpiresByType image/gif                             "access plus 1 month"
  ExpiresByType image/jpeg                            "access plus 1 month"
  ExpiresByType image/png                             "access plus 1 month"
  ExpiresByType video/mp4                             "access plus 1 month"
  ExpiresByType video/ogg                             "access plus 1 month"
  ExpiresByType video/webm                            "access plus 1 month"

  # For Web feeds
  ExpiresByType application/atom+xml                  "access plus 1 day"
  ExpiresByType application/rss+xml                   "access plus 1 day"

  # For Web fonts
  ExpiresByType application/font-woff                 "access plus 1 month"
  ExpiresByType application/vnd.ms-fontobject         "access plus 1 month"
  ExpiresByType application/x-font-ttf                "access plus 1 month"
  ExpiresByType font/opentype                         "access plus 1 month"
  ExpiresByType image/svg+xml                         "access plus 1 month"

</IfModule>

# Various rewrite rules.
<IfModule mod_rewrite.c>

  RewriteEngine on

# Uncomment the following to redirect all visitors to the www version
  RewriteCond %{HTTP_HOST} !^www\. [NC]
  RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

# Uncomment the following to redirect all visitors to non www version
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
# RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]

# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /

# Pass all requests not referring directly to files in the filesystem to index.php.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d 
  RewriteRule ^ index.php [L]

</IfModule>

# Enable Gzip compression.
<IfModule mod_deflate.c>

    # Force compression for mangled headers.
    # http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
    <IfModule mod_setenvif.c>
        <IfModule mod_headers.c>
            SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
            RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
        </IfModule>
    </IfModule>

    # Compress all output labeled with one of the following MIME-types
    # (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
    #  and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
    #  as `AddOutputFilterByType` is still in the core directives).
    AddOutputFilterByType DEFLATE application/atom+xml \
                                  application/javascript \
                                  application/json \
                                  application/rss+xml \
                                  application/vnd.ms-fontobject \
                                  application/x-font-ttf \
                                  application/x-web-app-manifest+json \
                                  application/xhtml+xml \
                                  application/xml \
                                  font/opentype \
                                  image/svg+xml \
                                  image/x-icon \
                                  text/css \
                                  text/html \
                                  text/plain \
                                  text/x-component \
                                  text/xml

</IfModule>

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

you're right, it truely is weird. i've taken your htaccess and it still doesn't work.
could you compare your phpinfo with mine, please
http://blog.km-photo.de/test.php

from htmly.

danpros avatar danpros commented on May 24, 2024

Corrupted file can lead into this either, how if you tray to delete the htacess file than upload it again via FTP?

Check this http://www.edan.me.uk/info.php

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

i used the one.com-filemanager

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

is it the permissions on files and folders? upliaded everything with ftp now, but still the same.
had to chage the rewrite condition to non-www version...

from htmly.

nightflasher avatar nightflasher commented on May 24, 2024

okay, here we go...

in .htaccess:

  • comment the follow and index options
  • uncomment the rewrite rules for nin-www

in config.ini:

now it works, with http://TLD/htmly/ and http://sub.TLD/

from htmly.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.