# ============================================================
# RUWAIS STEEL - OLD WORDPRESS SITE
# Domain: https://xyz.ruwaissteel.com/
# ============================================================

Options -Indexes

# Prevent old website from being indexed by search engines
<IfModule mod_headers.c>
Header always set X-Robots-Tag "noindex, nofollow, noarchive"
</IfModule>

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress