Skip to content

Commit

Permalink
Updated to .htaccess for URL Routing fix for those using PHP-FPM
Browse files Browse the repository at this point in the history
For issue #1056
  • Loading branch information
eSilverStrike committed Jan 13, 2022
1 parent 8e0be57 commit a80808f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions public_html/.htaccess.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ Options -Indexes -MultiViews
# Directs all Geeklog requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# For web servers that use PHP FastCGI implementation
RewriteRule ^(.*)$ /index.php/$1 [L]
# For web servers that use PHP-FPM implementation and have issues (if used, comment out line above)
# RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>

## Redirect 404 error to Geeklog error page
Expand Down

0 comments on commit a80808f

Please sign in to comment.