kenma9123/jotpoll/master/old-app/.htaccess - Htaccess File

kenma9123/jotpoll/master/old-app/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine  on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteCond %{REQUEST_URI} edit/[0-9a-z]+$
    RewriteRule ^(.+)$ #$1 [L,NE]

    RewriteCond %{REQUEST_URI} result/(.*)
    RewriteRule ^(.+)$ #$1 [L,NE]

    RewriteCond %{REQUEST_URI} create(/)?$ 
    RewriteRule ^(.+)$ #$1 [L,NE]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache