Horje
.htaccess Code Example
.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
.htaccess
# No extern use from your images
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?domainname.de [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ https://domainname.de/hotlink.jpg [NC,R,L]
.htaccess
RewriteEngine  on
RewriteRule ^(.*)$ $1.php
.htaccess

# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress
.htaccess
<IfModule mod_php5.c>
php_value max_execution_time 300
</IfModule>
.htaccess
#Supress php errors
php_flag display_errors Off
Source: www.drweb.de
.htaccess
#Before: https://example.com/index.php?user=robert

RewriteEngine On
RewriteRule ^user/([^/]+)?$ index.php?user=$1 [L,QSA]
    
#After: https://example.com/user/robert?query=value

#You can also use other query too.

#Like: robert?query=value&query2=value2&query3=value3
.htaccess
# GZIP Komprimierung aktivieren
<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>




Shell

Related
how to use migrate guru plugin Code Example how to use migrate guru plugin Code Example
ubuntu screen record stopped itself Code Example ubuntu screen record stopped itself Code Example
how to set findstr to new variable Code Example how to set findstr to new variable Code Example
fatal authentication failed for git psuh Code Example fatal authentication failed for git psuh Code Example
execute a scheme program Code Example execute a scheme program Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12