- New /ledigestilling/ index listing all open positions (split barber/beauty card styling) - Three ads: negletekniker + massør (beauty design), barber (gold barber design with recolored CSS + assets) - Rename ledigestilling.html -> negletekniker.html with 301 redirect - "Ledige stillinger" footer link on barber/beauty pages (NO/EN/HU) - Back-to-list link on each ad page Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
479 B
ApacheConf
Executable File
19 lines
479 B
ApacheConf
Executable File
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine on
|
|
|
|
# Job ad renamed: ledigestilling.html -> negletekniker.html (2026-07-17)
|
|
RewriteRule ^ledigestilling/ledigestilling\.html$ /ledigestilling/negletekniker.html [R=301,L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
<IfModule mod_php5.c>
|
|
RewriteRule ^(.*)$ index.php/$1 [L]
|
|
</IfModule>
|
|
|
|
<IfModule !mod_php5.c>
|
|
RewriteRule ^(.*)$ index.php?/$1 [L]
|
|
</IfModule>
|
|
|
|
</IfModule> |