Hello, this is my online wallet of links and useful articles

Removing Extensions .html .php

Removing Extensions To remove the .php extension from a PHP file for example odnuly.cz/servis.php to odnuly.cz/servis you have to add the following code inside the .htaccess file: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L] If you want to remove the .html extension from a html file for example odnuly.cz/servis.html to odnuly.cz/servis you simply have to alter the last line from the[…]


Read More »

Nastavení PPTP na windows 7&8

Postup nastavení pro připojení protokolem PPTP Na osobním počítači s Windows 7 postupujeme následujícími volbami: V levém spodním rohu obrazovky proklikneme volby Start → Ovládací panely Zde zvolíme ikonu Centrum síťových připojení a sdílení a otevřeme ji. Zobrazí se následující okno. V jeho pravé časti, proklikneme řádek Nastavit nové připojení nebo síť. Zobrazí[…]


Read More »
Tags:

Hezké URL

Když je potřeba skrýt koncovku adresy tak pomocí tohoto kódu: RewriteEngine On RewriteCond %{SCRIPT_FILENAME}/ -d RewriteCond %{SCRIPT_FILENAME}.html !-f RewriteRule [^/]$ %{REQUEST_URI}/ [R=301,L] RewriteCond %{ENV:REDIRECT_STATUS} ^$ RewriteRule ^(.+)\.html$ /$1 [R=301,L] RewriteCond %{SCRIPT_FILENAME}.html -f RewriteRule [^/]$ %{REQUEST_URI}.html [QSA,L]


Read More »