Hey Hillel or anybody else,
I am hosting Ver 5.0.21 in a folder beneath my primary Joomla website. When I want to go to invoiceninja, I have to specify https://www.myweb.com/billingz/public/index.php as there is no index.php in the invoiceninja root folder and then no matter where I go in invoiceNinja, it shows the full url with /index.php#.
I haven’t done anything to the .htaccess and I am running php 7.3 on Centos 7.8. Is there something that needs to be added to the .htaccess?
.htaccess below:
RewriteEngine On RewriteRule "^.env" - [F,L] RewriteRule "^storage" - [F,L] RewriteRule ^(.well-known)($|/) - [L]RewriteRule ^(.*)$ public/$1 [L]
https://github.com/h5bp/server-configs-apache/blob/master/dist/.htaccess
# INTERNET EXPLORER
----------------------------------------------------------------------
| Iframes cookies |
----------------------------------------------------------------------
Allow cookies to be set from iframes in Internet Explorer.
https://msdn.microsoft.com/en-us/library/ms537343.aspx
http://www.w3.org/TR/2000/CR-P3P-20001215/
Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""# MEDIA TYPES AND CHARACTER ENCODINGS
----------------------------------------------------------------------
| Character encodings |
----------------------------------------------------------------------
Serve all resources labeled as text/html
or text/plain
with the media type charset
parameter set to UTF-8
.
https://httpd.apache.org/docs/current/mod/core.html#adddefaultcharset
AddDefaultCharset utf-8
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Serve the following file types with the media type charset
parameter set to UTF-8
.
https://httpd.apache.org/docs/current/mod/mod_mime.html#addcharset
AddCharset utf-8 .atom \ .bbaw \ .css \ .geojson \ .js \ .json \ .jsonld \ .manifest \ .rdf \ .rss \ .topojson \ .vtt \ .webapp \ .webmanifest \ .xloc \ .xml# WEB PERFORMANCE
----------------------------------------------------------------------
| Compression |
----------------------------------------------------------------------
# Force compression for mangled headers.
# https://developer.yahoo.com/blogs/ydn/pushing-beyond-gzipping-25601.html
<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>
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Map certain file types to the specified encoding type in order to
# make Apache serve them with the appropriate `Content-Encoding` HTTP
# response header (this will NOT make Apache compress them!).
# If the following file types wouldn't be served without the appropriate
# `Content-Enable` HTTP response header, client applications (e.g.:
# browsers) wouldn't know that they first need to uncompress the response,
# and thus, wouldn't be able to understand the content.
# http://httpd.apache.org/docs/current/mod/mod_mime.html#addencoding
<IfModule mod_mime.c>
AddEncoding gzip svgz
</IfModule>
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Compress all output labeled with one of the following media types.
# IMPORTANT: For Apache versions below 2.3.7 you don't need to enable
# `mod_filter` and can remove the `<IfModule mod_filter.c>` & `</IfModule>`
# lines as `AddOutputFilterByType` is still in the core directives.
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE "application/atom+xml" \
"application/javascript" \
"application/json" \
"application/ld+json" \
"application/manifest+json" \
"application/rdf+xml" \
"application/rss+xml" \
"application/schema+json" \
"application/vnd.geo+json" \
"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/cache-manifest" \
"text/css" \
"text/html" \
"text/javascript" \
"text/plain" \
"text/vtt" \
"text/x-component" \
"text/xml"
</IfModule>