# Enable ``` a2enmod rewrite ``` And in `/etc/apache2/apache2.conf` ``` Options Indexes FollowSymLinks AllowOverride All Require all granted ``` # Example ``` RewriteEngine on RewriteBase /obs # END stops processing completely RewriteRule ^boing$ boing.php [END] # L stops this run and restarts RewriteRule ^snarf$ boing [L] # This will run for anything except starting with s except snarf RewriteRule ^s(.*)$ snarf?$1 ```