Category Archives: Clean URL
Drupal check Clean URL is enabled or disabled
<?php
require_once ‘./includes/bootstrap.inc’;
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
if(variable_get(‘clean_url’, 0)==1)
echo “Clean URL Enabled”;
else
echo “Clean URL Disabled”;
?>