Files
medicalalert-web-reloaded/wp/.htaccess
Rachit Bhargava 5d0f0734d8 first commit
2023-07-21 17:12:10 -04:00

12 lines
235 B
ApacheConf

# 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