X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=htaccess.sample;h=f7513cc0c7dd54153a80600ea16eacd168c443c5;hb=017eee8e5d7fb4c976032f6e1b14947254fc073e;hp=91ae9da9be19b7613abb596b85a015be947ab59b;hpb=d6b31d42c7e315d18d40ed6ad30f7d90feeba341;p=quix0rs-gnu-social.git diff --git a/htaccess.sample b/htaccess.sample index 91ae9da9be..f7513cc0c7 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -1,24 +1,53 @@ - - RewriteEngine On +### 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 - # NOTE: change this to your actual StatusNet path; may be "/". - RewriteBase /mublog/ + + RewriteEngine On - # If your site is private and want to only allow logged-in users to - # be able to download file attachments, uncomment this rule. + # NOTE: change this to your actual GNU social base URL path, + # minus the domain part: # - # If you have a custom attachment path - # ($config['attachments']['path']), change "file/" to match. + # https://social.example.com/ => / + # https://example.com/social/ => /social/ # - #RewriteRule ^file/(.*) getfile/$1 + RewriteBase / + #RewriteBase /mublog/ + + ## Uncomment these if having trouble with API authentication + ## when PHP is running in CGI or FastCGI mode. + # + #RewriteCond %{HTTP:Authorization} ^(.*) + #RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) index.php?p=$1 [L,QSA] + + ## You can also use PATHINFO by using this RewriteRule instead: + # RewriteRule (.*) index.php/$1 [L,QSA] - Order allow,deny - + # For mod_access_compat in Apache <2.4 + #Order allow,deny + # Use this instead for Apache >2.4 (mod_authz_host) + # Require all denied +