Files
Yuba/utils/sample_files/htaccess.txt
2019-06-10 16:32:09 -07:00

8 lines
211 B
Plaintext

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>