X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=htaccess.sample;h=af6e19784d1aa3f720571594b92a2b5f216a0b3b;hb=1f890f03c885ce0761be80e69e678cce5f9ee46a;hp=c7be2d86a0cd30b23ca5ed737e118ed90dcb20dd;hpb=26703076f66f77f337559416cc02101c532d7aa8;p=quix0rs-gnu-social.git diff --git a/htaccess.sample b/htaccess.sample index c7be2d86a0..af6e19784d 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -1,11 +1,31 @@ +### GNU social "fancy URL" setup +# +# Change the "RewriteBase" in the new .htaccess file to be the URL path +# to your GNU Social installation on your server. Typically this will +# be the path to your GNU Social directory relative to your Web root. +# If you are installing it in the root directory, leave it as '/'. +# +# If it doesn't work, double-check that AllowOverride for the GNU Social +# directory is 'All' in your Apache configuration file. This can be +# * /etc/apache2/apache2.conf (generic) +# * /etc/apache2/sites-available/default(on Debian and Ubuntu) +# * ...many other variations depending on distribution... +# +# See the Apache documentation for .htaccess files for more details: +# https://httpd.apache.org/docs/2.4/howto/htaccess.html +# +# Also, check that mod_rewrite is installed and enabled: +# https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html + + RewriteEngine On - # NOTE: change this to your actual StatusNet base URL path, + # NOTE: change this to your actual GNU social base URL path, # minus the domain part: # - # http://example.com/ => / - # http://example.com/mublog/ => /mublog/ + # https://social.example.com/ => / + # https://example.com/social/ => /social/ # RewriteBase / #RewriteBase /mublog/ @@ -19,24 +39,17 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) index.php?p=$1 [L,QSA] -<<<<<<< HEAD ## You can also use PATHINFO by using this RewriteRule instead: # RewriteRule (.*) index.php/$1 [L,QSA] - # For mod_access_compat in Apache <2.4 - Order allow,deny - - # Use this instead for Apache >2.4 (mod_authz_host) - # Require all denied - -======= - - - - Order allow,deny + + Order allow,deny + Deny from all + + = 2.3> + Require all denied + - ->>>>>>> Adding htaccess.sample back*shame*