• Search & compare prices from leading car hire companies & save!
  • Flexible Rentals, Worldwide locations, No Hidden Fees
  • Get in touch via Facebook
  • 24/7 Multi Lingual Customer Service

Digne Mini Guide

Digne is a town and commune in the French Alps. It is quite remote, and the nearest airport is Nice Airport, over fifty miles away. Nice has a huge range of carriers flying people into the airport from all over Europe, the Mediterranean and North Africa including many of the low-cost airlines. Direct transport from the airport to Digne is unheard of and rather than try the multitude of connections required, it is best to hire a car from the airport and use it whilst staying in Digne.

Current Rental Rates in Digne-les-Baines

Fiat 500

4 Adults, 3 Doors

From 55.00 EUR/day
Fiat 500

7 Days rental at 385.02 EUR from 24/07/2023

  2 |
  Manual |
  Yes

Renault Clio

5 Adults, 5 Doors

From 57.85 EUR/day
Renault Clio

7 Days rental at 404.99 EUR from 24/07/2023

  2 |
  Manual |
  Yes

Renault Captur

5 Adults, 5 Doors

From 67.86 EUR/day
Renault Captur

7 Days rental at 475.02 EUR from 24/07/2023

  3 |
  Manual |
  Yes

Renault Megane Estate

5 Adults, 5 Doors

From 91.28 EUR/day
Renault Megane Estate

7 Days rental at 638.99 EUR from 24/07/2023

  4 |
  Manual |
  Yes

Ford Kuga

5 Adults, 5 Doors

From 94.14 EUR/day
Ford Kuga

7 Days rental at 658.98 EUR from 24/07/2023

  4 |
  Manual |
  Yes

Citroen C5

5 Adults, 5 Doors

From 95.56 EUR/day
Citroen C5

7 Days rental at 668.98 EUR from 24/07/2023

  4 |
  Automatic |
  Yes

Useful to know about Digne-les-Baines

  • Digne is one of the main locations in France for the lavender trade.
  • Digne has been inhabited ever since the Neolithic Era and the Romans used it for trading purposes.
  • The Victor Hugo novel Les Misérables, which has been turned into a musical, is partially set in Digne
  • Digne Cathedral is one of the most visited sights in Digne.
  • The French Footballer Alain Boghossian comes from Digne.

 

Popular car hire destinations in Digne-les-Baines

Best car rental companies in Digne-les-Baines

7.0
No.1: HERTZ,
based on 4035 reviews
73
71
60
68
78
17 min (average wait time)
4.1
No.2: ADA,
based on 76 reviews
45
38
37
42
45
22 min (average wait time)

Digne-les-Baines car hire information

  • 7.0/10
    Best Rated Agent:
    Hertz EMEA Corporate
  • € 385.00
    Average price:
    (per week)
  • € 55.00
    Best Price:
    Per Week
  • 2
    Most Popular Type:
    Compact
  • 1
    Most popular model:
    Fiat 500
  • 6
    Total Cars Available
     

Average prices per day in Digne-les-Baines

System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index at System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) at System.Collections.Generic.List`1.RemoveAt(Int32 index) at CMSWebParts_MyWebParts_ChartCityAmchartsV1.generateGraph(String pvNodeID, String pvChartTitle) at CMSWebParts_MyWebParts_ChartCityAmchartsV1.Page_Load(Object sender, EventArgs e)
ItemPercent
January€ 47
February€ 52
March€ 52
April€ 42
May€ 45
June€ 49
July€ 62
August€ 64
September€ 49
October€ 47
November€ 55
December€ 59
ItemPercent
January€ 36
February€ 39
March€ 39
April€ 33
May€ 35
June€ 40
July€ 47
August€ 54
September€ 38
October€ 36
November€ 45
December€ 48
ItemPercent
January€ 116
February€ 116
March€ 116
April€ 116
May
June
July
August
September
October
November€ 116
December€ 116
ItemPercent
January€ 66
February€ 66
March€ 66
April€ 50
May€ 40
June€ 58
July€ 76
August€ 89
September
October
November€ 76
December€ 77
ItemPercent
January€ 39
February€ 40
March€ 40
April€ 33
May€ 32
June€ 36
July€ 44
August€ 43
September€ 35
October€ 36
November€ 41
December€ 43
ItemPercent
January€ 82
February€ 97
March€ 97
April€ 79
May€ 97
June€ 91
July€ 94
August€ 94
September€ 109
October€ 85
November€ 82
December€ 94
ItemPercent
January
February
March
April€ 36
May€ 42
June€ 61
July€ 59
August€ 92
September
October
November€ 78
December€ 80
ItemPercent
*average daily rates based on 7 day rental, search for today's best prices
Page_Load: CT_ID:2212 NodeID:8174 pvCT_ID:2212 NodeID:8174 DECLARE @CountryKeyword varchar(200), @CountryCode varchar(50),@DocumentPageTitle varchar(200), @DocumentPageDescription varchar(2000),@CT_ID int SELECT @DocumentPageTitle = DocumentPageTitle,@DocumentPageDescription = DocumentPageDescription from CMS_Document where DocumentNodeID =8174 SELECT Top 1 @CountryKeyword = CountryKeyword, @CountryCode = CountryCode from CONTENT_MenuItem where BookingEngineLocationID=2212 SELECT Top 1 @CT_ID = BookingEngineLocationID from CONTENT_MenuItem where BookingEngineLocationID=2212 Declare @TotalReviews varchar(200), @higest_rating float, @cheapest_price float, @CheapestVendor varchar(200),@expensive_price float, @offercount int; SET @TotalReviews = (select SUM(TotalAgent) as TotalReviews from[cartrawler_v2].[dbo].Review R where R.CartrawlerCode = @CT_ID and RecordDateTimeDt = (select MAX(RecordDateTimeDt) from[cartrawler_v2].[dbo].Review R where R.CartrawlerCode = @CT_ID)) SET @higest_rating = ( SELECT TOP 1 X.higest_rate * 2 as higest_rate FROM ( SELECT VendorName,CAST(overall AS decimal(5, 1)) AS higest_rate, CartrawlerCode FROM[cartrawler_v2].[dbo].[Review] WHERE CartrawlerCode = @CT_ID AND overall IS NOT NULL GROUP BY VendorName, overall, CartrawlerCode ) X ORDER BY CartrawlerCode, CAST(X.higest_rate AS decimal(5, 1)) DESC) SET @cheapest_price = ( SELECT CONVERT(Numeric(19, 2), min(computeddailyrate)) best_price FROM[cartrawler_v2].[dbo].[LocationVehicleV3] where CartrawlerCode = @CT_ID and vehiclematrixcategory<>'' and vehiclematrixcategory is not null and vehiclematrixcategory<> 'NULL' and RecordDateTimeDt = (select MAX(RecordDateTimeDt) from [cartrawler_v2].[dbo].[LocationVehicleV3] where CartrawlerCode=@CT_ID)) SET @CheapestVendor = ( select TOP 1 VendorShortName FROM[cartrawler_v2].[dbo].[ExtLocationVehicleV1] WHERE CartrawlerCode = @CT_ID AND RecordDateTimeDt = (select MAX(RecordDateTimeDt) from[cartrawler_v2].[dbo].[ExtLocationVehicleV1] where CartrawlerCode = @CT_ID ) order by computeddailyrate ) SET @expensive_price = ( SELECT TOP 1 CONVERT(Numeric(19,2),X.ComputedDailyRate) as expensive_price FROM ( SELECT [Expr1], MAX(ComputedDailyRate) as ComputedDailyRate, CountryCode, RecordDateTime, CountryName FROM [cartrawler_v2].[dbo].[LocationVehicleV2] group by [Expr1], CountryCode, RecordDateTime, RecordDateTimeDt, CountryName, CartrawlerCode HAVING (CountryCode= @CountryCode or CountryName = @CountryCode) AND ISNULL([Expr1], '') <> '' and CartrawlerCode = @CT_ID and RecordDateTimeDt = (select MAX(RecordDateTimeDt) from[cartrawler_v2].[dbo].[LocationVehicleV2] where(CountryCode= @CountryCode or CountryName = @CountryCode) and CartrawlerCode = @CT_ID) ) X ORDER BY X.ComputedDailyRate desc ) SET @offercount = (SELECT FLOOR(RAND() *(100-5+1))+5) SELECT @TotalReviews as TotalReviews, ratingavailable = CASE when @higest_rating is not null then @TotalReviews ELSE 0 END , higest_rating = CASE when @higest_rating is not null then @higest_rating ELSE 0 END , @cheapest_price as cheapest_price,@CheapestVendor as CheapestVendor, @expensive_price as expensive_price, @offercount as offercount,@DocumentPageTitle as DocumentPageTitle,@DocumentPageDescription as DocumentPageDescription
FAQs - How can we help?

There are always some points on which you are not sure when hiring a car, so we have done our best to answer the frequently asked questions. Just click this link and you will find the questions are sorted by category for easy navigation.


Other Rhino Car Hire Locations

We specialise in car rentals throughout France fo find you the best price and that's a promise...

from
€46
per day
ItemPercent
Jan€ 39
Feb€ 32
Mar€ 37
Apr€ 42
May€ 46
Jun€ 47
Jul€ 70
Aug€ 67
Sep€ 45
Oct€ 47
Nov€ 44
Dec€ 38
from
€43
per day
ItemPercent
Jan€ 38
Feb€ 38
Mar€ 32
Apr€ 44
May€ 45
Jun€ 36
Jul€ 70
Aug€ 61
Sep€ 41
Oct€ 38
Nov€ 39
Dec€ 37
from
€46
per day
ItemPercent
Jan€ 29
Feb€ 35
Mar€ 23
Apr€ 50
May€ 45
Jun€ 43
Jul€ 84
Aug€ 69
Sep€ 46
Oct€ 48
Nov€ 46
Dec€ 40
from
€37
per day
ItemPercent
Jan€ 16
Feb€ 16
Mar€ 16
Apr€ 44
May€ 40
Jun€ 71
Jul€ 64
Aug€ 78
Sep€ 37
Oct€ 24
Nov€ 19
Dec€ 16