RewriteOptions inherit

RewriteEngine on
RewriteCond %{HTTP_HOST} ^proiqtest\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.proiqtest\.com$
RewriteRule ^start2\.html$ "http\:\/\/proiqtest\.com\/" [R=301,L]

#
# Setting medyCMS requirements
#

### Make utf-8 the default charset for everything
AddDefaultCharset utf-8

#ErrorDocument 404 index.php
#ErrorDocument 500 index.php

<IfModule mod_rewrite.c>

# If you're having issues with 403 Forbidden using Apache 2.0, try to add the following line at the top of .htaccess
# Options +FollowSymlinks

### Set next line to your CMS root - if not in subdir, then just /
### (required)
RewriteBase /

### Remove trailing slash (if any)
RewriteRule ^(.*)/$ $1 [L,R=301]

### If a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

### Otherwise forward it to proper file
RewriteRule ^.*[^/]$ $0.php [L]

</IfModule>
