Xenoveritas/xvwebvideo/master/sample.htaccess - Htaccess File

Xenoveritas/xvwebvideo/master/sample.htaccess

# Sample htaccess using ModRewrite to rewrite paths
# Rename to ".htaccess" to use in Apache

<IfModule mod_rewrite.c>
  RewriteEngine on

  # Rewrite current-style URLs of the form 'index.php?q=x'.
  RewriteCond %{REQUEST_FILENAME} !-f
  #RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ /play/play.php?q=$1 [L,QSA]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache