RewriteEngine On
RewriteBase /Notice/

# If accessed without UUID, fallback to index.php
RewriteRule ^$ index.php [L]

# Redirect UUID to index.php?notice_id=
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9\-]+)/?$ index.php?notice_id=$1 [L,QSA]