#SetEnvIf X-HTTPS On HTTPS=On
SetEnvIf X-HTTPS 1 HTTPS=1
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</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
php_value default_charset utf-8
AddType 'text/html; charset=utf-8' .html .htm .shtml
class App extends Component {
render() {
return (
<div className="app">
<aside>
<ul className="currList">
{currencies.map(curr => (
<li key={curr} className="currItem">
<input type="checkbox" id={curr} />
<label htmlFor={curr}>{curr.toUpperCase()}</label>
</li>
))}
</ul>
</aside>
</div>
);
}
}
class App extends Component {
render() {
return (
<div className="app">
<aside>
<ul className="currList">
{currencies.map(curr => (
<li key={curr} className="currItem">
<input type="checkbox" id={curr} />
<label htmlFor={curr}>{curr.toUpperCase()}</label>
</li>
))}
</ul>
</aside>
</div>
);
}
}
RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
RewriteRule (.*) index.php?$1 [L,QSA]
RewriteEngine On
RewriteRule ^(.*)$ /public/$1
function aboutPageContent() {
?>
<ul class="menuInner">
<li <?=(get_the_ID() == 16)?'class="active"':''; ?>>
<a href="<?=get_the_permalink(16);?>">
<?=get_the_title(16);?>
</a>
</li>
<li <?=(get_the_ID() == 18)?'class="active"':''; ?>>
<a href="<?=get_the_permalink(18);?>">
<?=get_the_title(18);?>
</a>
</li>
<li <?=(get_the_ID() == 70)?'class="active"':''; ?>>
<a href="<?=get_the_permalink(70);?>">
<?=get_the_title(70);?>
</a>
</li>
<li <?=(get_the_ID() == 71)?'class="active"':''; ?>>
<a href="<?=get_the_permalink(71);?>">
<?=get_the_title(71);?>
</a>
</li>
<li <?=(get_the_ID() == 185)?'class="active"':''; ?>>
<a href="<?=get_the_permalink(185);?>">
<?=get_the_title(185);?>
</a>
</li>
</ul>
<?php
}