Skip to content

Instantly share code, notes, and snippets.

@initcron
Created November 18, 2024 14:54
Show Gist options
  • Save initcron/6a6daee3500978c6b3d1a89c77076f97 to your computer and use it in GitHub Desktop.
Save initcron/6a6daee3500978c6b3d1a89c77076f97 to your computer and use it in GitHub Desktop.
/srv/www/wordpress/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value memory_limit 256M
php_value max_execution_time 300
php_value max_input_time 300
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment