Gimhoy/WordPress-on-sdae/master/.htaccess - Htaccess File

Gimhoy/WordPress-on-sdae/master/.htaccess

#突破上传限制
php_value post_max_size 512m
php_value upload_max_filesize 512m
php_value max_execution_time 120
php_value max_input_time 240

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache